We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
##this is my Makefile for x64 and arm32
TARGET = asm_test
#CROSS_COMPILE = CROSS_COMPILE = /opt/ivot/arm-ca9-linux-gnueabihf-6.5/bin/arm-ca9-linux-gnueabihf- CXX = $(CROSS_COMPILE)g++
CXXFLAGS = -O0 -g -fPIC -Wall -fmessage-length=0 -std=c++14 -pthread -fopenmp LDFLAGS = -lgcov -lpthread COMPILE_DIR = ./objs
$(COMPILE_DIR)/%.o : ./%.cpp @mkdir -p $(@d) $(CXX) $(CXXFLAGS) -c $< -o $@
SRC = $(notdir $(wildcard ./*.cpp)) OBJ = $(patsubst %.cpp,$(COMPILE_DIR)/%.o,$(SRC))
$(TARGET) : $(OBJ) $(CXX) $(CXXFLAGS) $^ -o $@ $(LDFLAGS)
all: $(TARGET)
clean: rm -rf $(COMPILE_DIR) $(TARGET)
################################################### could SConstruct to Makefile it is more easier to compile
The text was updated successfully, but these errors were encountered:
prototype https://www.mediafire.com/file/a9i1rzzknqqhqvx/test_submake.tar.gz
i will do it later and then share Makefile version
Sorry, something went wrong.
No branches or pull requests
##this is my Makefile for x64 and arm32
TARGET = asm_test
#CROSS_COMPILE =
CROSS_COMPILE = /opt/ivot/arm-ca9-linux-gnueabihf-6.5/bin/arm-ca9-linux-gnueabihf-
CXX = $(CROSS_COMPILE)g++
CXXFLAGS = -O0 -g -fPIC -Wall -fmessage-length=0 -std=c++14 -pthread -fopenmp
LDFLAGS = -lgcov -lpthread
COMPILE_DIR = ./objs
$(COMPILE_DIR)/%.o : ./%.cpp
$(CXX) $ (CXXFLAGS) -c $< -o $ @
@mkdir -p $(@d)
SRC =$(notdir $ (wildcard ./*.cpp))$(patsubst %.cpp,$ (COMPILE_DIR)/%.o,$(SRC))
OBJ =
all: $(TARGET)
clean:$(COMPILE_DIR) $ (TARGET)
rm -rf
###################################################
could SConstruct to Makefile it is more easier to compile
The text was updated successfully, but these errors were encountered: