考虑这个Makefile
% cat Makefile
main: main.o add.o
使用cc
代替g++
来链接目标文件
% make
g++ -Wall -pedantic -std=c++0x -c -o main.o main.cpp
g++ -Wall -pedantic -std=c++0x -c -o add.o add.cpp
cc main.o add.o -o main
main.o:main.cpp:(.text+0x40): undefined reference to `std::cout'
...
如何判断(GNU)使用g++
(链接C ++库)而不是cc
?
答案 0 :(得分:31)
(GNU)Make有内置规则,这很好,因为它足以在没有规则的情况下提供依赖:
main: main.o add.o
# no rule, therefore use built-in rule
但是,在这种情况下,内置规则使用$(CC)
来链接目标文件。
% make -p -f/dev/null
...
LINK.o = $(CC) $(LDFLAGS) $(TARGET_ARCH)
...
LINK.cc = $(CXX) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) $(TARGET_ARCH)
...
%: %.o
# recipe to execute (built-in):
$(LINK.o) $^ $(LOADLIBES) $(LDLIBS) -o $@
要让Make选择正确的链接器,将LINK.o
设置为LINK.cc
就足够了。因此,最小Makefile
可能看起来像
% cat Makefile
LINK.o = $(LINK.cc)
CXXFLAGS=-Wall -pedantic -std=c++0x
main: main.o add.o