gpt4 book ai didi

CLion 出现 CMAKE 错误

转载 作者:行者123 更新时间:2023-11-30 18:28:40 24 4
gpt4 key购买 nike

我是 C 编程的初学者,如果我在 CLion 上启动项目,我会收到此错误代码:

C:\Program Files\JetBrains\CLion 2017.2.2\bin\cmake\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - MinGW Makefiles" C:\Users\danie\CLionProjects\untitled2
-- The C compiler identification is GNU 5.3.0
-- The CXX compiler identification is unknown
-- Check for working C compiler: C:/MinGW/bin/gcc.exe
-- Check for working C compiler: C:/MinGW/bin/gcc.exe -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
CMake Error at CMakeLists.txt:2 (project):
The CMAKE_CXX_COMPILER:

g++.exe

is not a full path and was not found in the PATH.

通过设置环境告诉 CMake 在哪里找到编译器 变量“CXX”或 CMake 缓存条目 CMAKE_CXX_COMPILER 到完整路径 到编译器,或者编译器名称(如果它在 PATH 中)。

-- Configuring incomplete, errors occurred!
See also "C:/Users/danie/CLionProjects/untitled2/cmake-build-debug/CMakeFiles/CMakeOutput.log".
See also "C:/Users/danie/CLionProjects/untitled2/cmake-build-debug/CMakeFiles/CMakeError.log".

[完成]

我该怎么做才能让它正常工作?感谢您的帮助。

最佳答案

默认情况下,CMake 预计项目需要支持 C 和 C++。如果您的项目仅需要 C,请在 project() 调用中指定:

project(<project-name> C)

关于CLion 出现 CMAKE 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46012113/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com