gpt4 book ai didi

c++ - 如何编辑默认的 makefile

转载 作者:太空狗 更新时间:2023-10-29 11:31:55 35 4
gpt4 key购买 nike

我可以编辑默认的 makefile 吗?我想将 -std=c++11 标志添加到默认 makefile,以便 make 命令将编译和构建 C++11 程序。

例如,目前,当我尝试使用 make 命令编译程序时,会出现以下错误:

g++ a.cpp -o a

a.cpp: In function ‘int main()’:

a.cpp:118:12: error: ISO C++ forbids declaration of ‘it’ with no type [-fpermissive]

for(auto &it : v) cout << it << endl;
^

a.cpp:118:17: warning: range-based ‘for’ loops only available with -std=c++11 or -std=gnu++11
for(auto &it : v) cout << it << endl;
^

<builtin>: recipe for target 'a' failed

make: *** [a] Error 1

最佳答案

您可以将附加参数传递给 make 以覆盖默认值。

$ make [TARGET]... [VARIABLE=VALUE]...

在您的情况下,您希望将 -std=c++11 开关添加到 C++ 编译器。 C++ 编译器的标志存储在名为 CXXFLAGS 的变量中。所以你可以试试这个。

$ make a CXXFLAGS='-std=c++11'

请注意,变量 CPPFLAGS 保存 C++ 编译器的标志,但保存 C(和 C++)预处理器的标志。因此,如果您将 -std=c++11 开关添加到它,如果使用它调用 C 编译器,您将大吃一惊。

实际上,由于 -std 开关从根本上修改了编译器接受的语言,我更愿意将其视为编译器选择而不是编译器标志,所以我更愿意覆盖 CXX 保存 C++ 编译器名称的变量。

$ make a CXX='g++ -std=c++11'

这还有一个好处,您可以保留任何其他编译器标志,例如 -Wall -O2 -g 或您拥有的东西。

关于c++ - 如何编辑默认的 makefile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33228018/

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