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?
- 近似搜索的工作原理 2021-01-01
- C++ 协变模板 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 静态初始化顺序失败 2022-01-01
- 从python回调到c++的选项 2022-11-16
- 如何对自定义类的向量使用std::find()? 2022-11-07