如何在编译时测试GCC当前版本?

发布于 2024-07-08 19:33:04 字数 397 浏览 10 评论 0原文

我想根据 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。

我很确定在预处理时定义了一个变量,但我只是找不到它了。

I would like to include a different file depending on the version of GCC. More precisely I want to write:

#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

I don't care about gcc before 3.2.

I am pretty sure there is a variable defined at preprocessing time for that, I just can't find it again.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

戴着白色围巾的女孩 2024-07-15 19:33:04

应根据您的需要定义许多宏:

__GNUC__              // major
__GNUC_MINOR__        // minor
__GNUC_PATCHLEVEL__   // patch

版本格式为major.minor.patch,例如4.0.2

这些的文档可以找到此处

There are a number of macros that should be defined for your needs:

__GNUC__              // major
__GNUC_MINOR__        // minor
__GNUC_PATCHLEVEL__   // patch

The version format is major.minor.patch, e.g. 4.0.2

The documentation for these can be found here.

染年凉城似染瑾 2024-07-15 19:33:04

好的,经过更多搜索,一种可能的方法是使用 features.h 中定义的 __GNUC_PREREQ

#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

Ok, after more searches, it one possible way of doing it is using __GNUC_PREREQ defined in 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
握住你手 2024-07-15 19:33:04

附注:

要查找所有预定义的宏:

  • 创建空文件 t.cpp
  • g++ -E -dM t.cpp

As a side note:

To find all the predefined macros:

  • Create empty file t.cpp
  • g++ -E -dM t.cpp
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文