我们平台上的CMake可以找到可用的编译器和编译器标志的方法是:CMake提供--system-information标志,他将把关于系统的所有信息转储到屏幕
时间: 2024-10-16 20:06:45 浏览: 32
在你们的平台上使用CMake来查找可用的编译器和编译器标志,你可以通过运行CMake命令并在其后附加`--system-information`标志。这个选项会让CMake生成详细的系统配置报告,其中包括支持的编译器列表及其版本信息、系统架构等。当你运行这个命令时,CMake会打印出这些关键信息以便于你确认所选编译器是否兼容,并了解哪些标志可以用于构建过程。
例如,你可能会看到类似这样的输出:
```
-- The C compiler identification is GNU 9.3.0
-- The CXX compiler identification is GNU 9.3.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
```
从这里,你可以看到支持的C/C++编译器路径以及它们的版本。
阅读全文