我在XCode
中使用此插件启用GCC 5.3
:https://github.com/hmazhar/xcode-gcc/blob/master/GCC%205.2.xcplugin/Contents/Resources/GCC%205.2.xcspec
我用5.3取代了所有5.2,并在我的OS X上安装了带有brew的GCC 5.3。
然后我将Compiler for C/C++/Objective-C
更改为GCC 5.3
但是当我尝试编译C++
代码时,我收到以下消息。我应该在哪里更改设置?
#ifndef _CXX0X_WARNING_H
#define _CXX0X_WARNING_H 1
#if __cplusplus < 201103L
#error This file requires compiler and library support for the \
ISO C++ 2011 standard. This support is currently experimental, and must be \
enabled with the -std=c++11 or -std=gnu++11 compiler options.
#endif
#endif
Xcode 7.2,OS X El Captain 10.11.3,GCC 5.3。
过时: - 它不起作用。
关于启用GCC 4.5的一些文章我没有做过这一步:
2)在项目设置中
删除“CLANG_CXX_LIBRARY”行 我不知道要删除它。我应该清空这个变量的值还是应该完全删除它?它可以成为我问题的根源吗?