在我的makefile顶部,我有以下内容。
USE_44 = 0
ifeq($(USE_44), 0)
CXX = g++
else
CXX = g++44
endif
但是我收到了错误
makefile:2: *** missing separator. Stop.
我在这里做错了什么?
答案 0 :(得分:6)
ifeq
后需要一个空格。这解决了这个问题。
答案 1 :(得分:2)
GNU make有一个非常有用但经常被忽视的功能computed variable names。使用此功能可以避免条件并使代码更短,更易读:
USE_44 := 0
cxx.0 := g++
cxx.1 := g++44
CXX := ${cxx.${USE_44}}
通常,您希望接受用户的编译器名称,并根据版本设置编译器选项:
CXX := g++
cxx_version_ := $(subst ., ,$(shell ${CXX} -dumpversion))
cxx_major_ := $(word 1,${cxx_version_})
cxx_minor_ := $(word 2,${cxx_version_})
cxxflags.4 := -Wno-multichar
cxxflags.4.3 := ${cxxflags.4} -march=native -fdiagnostics-show-option
cxxflags.4.4 := ${cxxflags.4.3} -Werror=return-type -Werror=reorder
cxxflags.4.5 := ${cxxflags.4.4}
CXXFLAGS := ${cxxflags.${cxx_major_}.${cxx_minor_}}
$(info g++ version is ${cxx_major_}.${cxx_minor_})
$(info g++ options are ${CXXFLAGS})
输出:
$ make
g++ version is 4.5
g++ options are -Wno-multichar -march=native -fdiagnostics-show-option -Werror=return-type -Werror=reorder
make: *** No targets. Stop.