我想根据GCC的版本包含不同的文件。更确切地说,我想写:
#if GCC_VERSION >= 4.2
# include <unordered_map>
# define EXT std
#elif GCC_VERSION >= 4
# include <tr1/unordered_map>
# define EXT std
#else
# include <ext/hash_map>
# define unordered_map __gnu_cxx::hash_map
# define EXT __gnu_cxx
#endif
我不关心3.2之前的gcc。
我很确定在预处理时间定义了一个变量,我再也找不到了。
答案 0 :(得分:44)
应根据您的需要定义许多宏:
__GNUC__ // major
__GNUC_MINOR__ // minor
__GNUC_PATCHLEVEL__ // patch
版本格式为major.minor.patch,例如4.0.2
可以找到here的文档。
答案 1 :(得分:27)
好的,经过更多搜索,一种可能的方法是使用__GNUC_PREREQ
中定义的features.h
。
#ifdef __GNUC__
# include <features.h>
# if __GNUC_PREREQ(4,0)
// If gcc_version >= 4.0
# elif __GNUC_PREREQ(3,2)
// If gcc_version >= 3.2
# else
// Else
# endif
#else
// If not gcc
#endif
答案 2 :(得分:17)
作为旁注:
要查找所有预定义的宏:
g++ -E -dM t.cpp