使Eclipse CDT 4.4 Luna 支持 c++ 11 的设置

用Eclipse Luna编译C++ 11源码总是出错,编译器用的mingw gcc,需要在CDT设置如下:

菜单:

Window -> Preferences -> C/C++ -> Build -> Settings -> Discovery -> CDT GCC Build-in Compiler Settings

添加-std=c++11

右键项目属性:

Properties -> C/C++ Build -> Settings -> Tool Settings -> GCC C++ Compiler -> Dialect

添加 -std=c++11 到other dialect flags 或者列表里面选择 ISO C++11 

如果是CMake项目:

cmake -G"Eclipse CDT4 - Unix Makefiles" -D CMAKE_BUILD_TYPE=Debug ..

右键项目属性:

Properties -> C/C++ General -> Preprocessor Include Paths, Marcos etc. -> Providers

使 CDT GCC Build-in Compiler Settings 优先 Contributed PathEntry Containers 

菜单里面选择 Project ->C/C++ Index 重建索引使c++ 11的代码提示正确。


来自

http://stackoverflow.com/questions/9131763/eclipse-cdt-c11-c0x-support

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。