gpt4 book ai didi

c++ - 使用 c++ 而不是 g++ 的 Makefile - 为什么?

转载 作者:行者123 更新时间:2023-11-28 02:39:04 25 4
gpt4 key购买 nike

我似乎无法让我的 makefile 正确构建我的 C++ 文件。我的生成文件代码如下;我正在尝试编译的文件名为“avl.cc”(可以正常工作并正确编译)。

CC=g++
CFLAGS=-g -O2
PROGS=avl

all: $(PROGS)

$@:
$(CC) $(CFLAGS) $@ $@.cc

.PHONY: clean
clean:
rm $(PROGS)

但是,当我输入命令 makemake all 时,我得到了

c++     avl.cc   -o avl

而且我想要从 -g 标志中得到的调试符号没有出现。类似的 makefile(仅更改 PROGS 变量)适用于类似的项目,所以我不确定我做错了什么。有没有人有任何提示?谢谢!

最佳答案

来自 Makefile documentation about automatic variables :

It’s very important that you recognize the limited scope in whichautomatic variable values are available: they only have values withinthe recipe. In particular, you cannot use them anywhere within thetarget list of a rule; they have no value there and will expand to theempty string.

这意味着你不能使用$@作为规则,这意味着使用Makefile默认的c++编译规则,并且由于你没有使用正确的变量名进行c++编译,它们也是忽略。

您可以将 CC 替换为 CXX 并将 CFLAGS 替换为 CXXFLAGS 以使用 c++。

关于c++ - 使用 c++ 而不是 g++ 的 Makefile - 为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26592585/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com