我的系统编译器(gcc42)可以正常使用我想要的TR1功能,但是尝试支持除系统之外的新编译器版本,试图访问TR1标头和#error要求-std = c ++ 0x选项,因为它是如何与库或某些集线器接口的。
/usr/local/lib/gcc45/include/c++/bits/c++0x_warning.h:31:2: error: #error This file requires compiler and library support for the upcoming ISO C++ standard, C++0x. This support is currently experimental, and must be enabled with the -std=c++0x or -std=gnu++0x compiler options.
在这个系统(FreeBSD)下支持GCC 4.4和4.5,不得不提供额外的开关,但显然它会改变图片!
使用我的系统编译器(g ++ 4.2默认方言):
#include <tr1/foo>
using std::tr1::foo;
使用较新的(4.5)版本的编译器和-std = c ++ 0x:
#include <foo>
using std::foo;
无论如何使用预处理器,我可以判断g ++是否在启用C ++ 0x功能的情况下运行?
我正在寻找的东西是:
#ifdef __CXX0X_MODE__
#endif
但我在手册或网上没有找到任何内容。
按照这个速度,我开始认为生活会更容易,使用Boost作为依赖,而不用担心在TR4之前到达的新语言标准......呵呵。
答案 0 :(得分:82)
在gcc 4.4.4中,似乎只有一个预定义的宏,暗示-std = c ++ 0x生效:
#define __GXX_EXPERIMENTAL_CXX0X__ 1
我无法访问gcc 4.5.0,但你可以自己检查一下:
[16:13:41 0 ~] $ g++ -E -dM -std=c++0x -x c++ /dev/null >b
[16:13:44 0 ~] $ g++ -E -dM -std=c++98 -x c++ /dev/null >a
[16:13:50 0 ~] $ diff -u a b
--- a 2010-06-02 16:13:50.200787591 +0200
+++ b 2010-06-02 16:13:44.456912378 +0200
@@ -20,6 +20,7 @@
#define __linux 1
#define __DEC32_EPSILON__ 1E-6DF
#define __unix 1
+#define __GXX_EXPERIMENTAL_CXX0X__ 1
#define __LDBL_MAX_EXP__ 16384
#define __linux__ 1
#define __SCHAR_MAX__ 127
对于单行命令,
g++ -E -dM -std=c++98 -x c++ /dev/null > std1 && g++ -E -dM -std=c++0x -x c++ /dev/null > std2 && diff -u std1 std2 | grep '[+|-]^*#define' && rm std1 std2
给你一些类似的东西:
+#define __GXX_EXPERIMENTAL_CXX0X__ 1
答案 1 :(得分:36)
如果使用-std=c++0x
进行编译,则会定义__GXX_EXPERIMENTAL_CXX0X__
。
答案 2 :(得分:17)
好吧,从gcc-4.7开始,您就可以查看__cplusplus了:
“G ++现在将预定义的宏__cplusplus设置为正确的值,199711L用于C ++ 98/03,而201103L用于C ++ 11”
这应该是正确的,符合标准的方式。不幸的是,它对大多数在野外安装的gcc都不起作用。