CMake Error at CMakeLists.txt:2 (project):The CMAKE_C_COMPILER: /usr/bin/x86_64-w64-mingw32-gcc-11.2.0 is not a full path to an existing compiler tool. Tell CMake where to find the compiler by setting either the environment variable "CC" or the CMake cache entry CMAKE_C_COMPILER to the full path to the compiler, or to the compiler name if it is in the PATH.CMake (project)
时间: 2024-03-08 10:51:26 浏览: 198
CMake交叉编译配置
这是一个 CMake 错误,它提示你指定的 C 编译器不存在或者路径不正确。你需要设置环境变量 "CC" 或者 CMake 缓存变量 CMAKE_C_COMPILER 来告诉 CMake 编译器的完整路径或者编译器名称(如果在 PATH 中)。你可以使用以下命令来设置环境变量:
```
export CC=/usr/bin/x86_64-w64-mingw32-gcc-11.2.0
```
或者在 CMakeLists.txt 中设置 CMAKE_C_COMPILER 变量:
```
set(CMAKE_C_COMPILER "/usr/bin/x86_64-w64-mingw32-gcc-11.2.0")
```
请确保编译器路径正确,否则你可能会遇到其他编译错误。
阅读全文