使用eclipse编译含有C++11特性的代码

使用eclipse编译含有C++11特性的代码,总是出错。最后在stackoverflow找到了解决方法。
1. 右击项目,选择Properties。
2. C/C++ Build --> Settings --> Tool Settings --> GCC C++ Compiler --> Miscellanous。在右边的Other Flags中把 "-std=c++0x" 引号中的内容放到已有内容的后面。对于MinGW编译器还需要添加-U__STRICT_ANSI__ 选项。否则会出现如下错误:c:\mingw\bin\../lib/gcc/mingw32/4.4.0/include/c++/cwchar:159: error: '::swprintf' has not been declared
使用eclipse编译含有C++11特性的代码_第1张图片

2. C/C++ General -> Paths and Symbols -> Symbols -> GNU C++。点击Add,name栏复制__GXX_EXPERIMENTAL_CXX0X__,value为空。
使用eclipse编译含有C++11特性的代码_第2张图片

3. OK。
原帖地址: http://stackoverflow.com/questions/9131763/eclipse-cdt-c11-c0x-support

你可能感兴趣的:(使用eclipse编译含有C++11特性的代码)