In CMake, how can I test if the compiler is Clang?(在 CMake 中,如何测试编译器是否为 Clang?)
问题描述
我们有一套跨平台CMake 构建脚本,我们支持使用 Visual C++ 和 GCC.
We have a set of cross-platform CMake build scripts, and we support building with Visual C++ and GCC.
我们正在尝试 Clang,但我不知道如何测试编译器是带有我们 CMake 脚本的 Clang.
We're trying out Clang, but I can't figure out how to test whether or not the compiler is Clang with our CMake script.
我应该测试什么来查看编译器是否是 Clang?我们目前正在使用 MSVC
和 CMAKE_COMPILER_IS_GNU
分别测试 Visual C++ 和 GCC.
What should I test to see if the compiler is Clang or not? We're currently using MSVC
and CMAKE_COMPILER_IS_GNU<LANG>
to test for Visual C++ and GCC, respectively.
推荐答案
一个可靠的检查是使用 CMAKE_
变量.例如,检查 C++ 编译器:
A reliable check is to use the CMAKE_<LANG>_COMPILER_ID
variables. E.g., to check the C++ compiler:
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# using Clang
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
# using GCC
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
# using Intel C++
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC")
# using Visual Studio C++
endif()
如果使用像 ccache 这样的编译器包装器,这些也能正常工作.
These also work correctly if a compiler wrapper like ccache is used.
从 CMake 3.0.0 开始,Apple 提供的 Clang 的 CMAKE_
值现在是 AppleClang
.要同时测试 Apple 提供的 Clang 和常规 Clang,请使用以下 if 条件:
As of CMake 3.0.0 the CMAKE_<LANG>_COMPILER_ID
value for Apple-provided Clang is now AppleClang
. To test for both the Apple-provided Clang and the regular Clang use the following if condition:
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
# using regular Clang or AppleClang
endif()
另请参阅 AppleClang 政策说明一>.
CMake 3.15 增加了对 clang-cl 和常规的 clang 前端.您可以通过检查变量 CMAKE_CXX_COMPILER_FRONTEND_VARIANT
来确定前端变体:
CMake 3.15 has added support for both the clang-cl and the regular clang front end. You can determine the front end variant by inspecting the variable CMAKE_CXX_COMPILER_FRONTEND_VARIANT
:
if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
if (CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "MSVC")
# using clang with clang-cl front end
elseif (CMAKE_CXX_COMPILER_FRONTEND_VARIANT STREQUAL "GNU")
# using clang with regular front end
endif()
endif()
这篇关于在 CMake 中,如何测试编译器是否为 Clang?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 CMake 中,如何测试编译器是否为 Clang?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01