在 Intel C++ 上检测 C++0x 模式?

发布于 2024-09-24 04:27:19 字数 177 浏览 5 评论 0原文

使用 Qstd=c++0x 编译时,Intel C++ 是否预定义了一些宏? GCC 中类似 __GXX_EXPERIMENTAL_CXX0X__ 的东西? __cplusplus 仍然是 199711

有什么方法可以检测 C++0x 编译吗?

Does Intel C++ predefine some macro when compiling with Qstd=c++0x? Something like __GXX_EXPERIMENTAL_CXX0X__ in GCC? __cplusplus is still 199711.

Any way to detect C++0x compilation?

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

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

发布评论

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

评论(2

や三分注定 2024-10-01 04:27:19

英特尔文档表明确实如此在 Linux 上定义 __GXX_EXPERIMENTAL_CXX0X__,但在 Windows 上不定义任何宏。

The Intel documentation indicates that it does define __GXX_EXPERIMENTAL_CXX0X__ on Linux, but does not define any macro on Windows.

咆哮 2024-10-01 04:27:19

预处理器定义列表才包含在内。

#define __INTEL_CXX11_MODE__ 1

在当前 (2013-08-06) 适用于 Windows 的 Intel Composer XE 2013 Update 5 上,当且仅当启用 C++0x 模式时,

On the current (2013-08-06) Intel Composer XE 2013 Update 5 for Windows, the list of preprocessor definitions includes

#define __INTEL_CXX11_MODE__ 1

if and only if C++0x mode is enabled.

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