CMake Error in CMakeLists.txt: The CMAKE_C_COMPILER: /usr/bin/cc is not a full path to an existing compiler tool.
时间: 2023-06-24 18:09:30 浏览: 322
CMakeLists.txt
这个错误意味着 CMake 找不到可用的 C 编译器。你需要检查 `/usr/bin/cc` 是否存在,以及是否是 C 编译器的完整路径。如果没有安装 C 编译器,你需要先安装一个。
如果你已经安装了 C 编译器,你可以尝试在 CMakeLists.txt 文件中指定正确的编译器路径。例如:
```
set(CMAKE_C_COMPILER /usr/local/bin/gcc)
```
将上面的路径替换为你的 C 编译器的路径。
阅读全文