我正在学习 C++,我需要在 Geany 中为 C++11 正确设置我的编译和构建命令。
我以为我有正确的,但使用时auto
,我收到以下错误:
warning: ‘auto’ will change meaning in C++0x; please remove it [-Wc++0x-compat]
这是我当前的设置构建命令:
Compile: g++ -Wall -c "%f"
Build: g++ -Wall -o "%e" "%f"
Execute: "./%e"
为了正确编译、构建和执行 C++11 程序,我需要将这些设置为什么?