在windows和linux系统中有些用法不一样
这里是windows7
已经添加环境变量,重启过无数次,还是出现很多问题。

问题

cmd终端中:
1.The CXX compiler identification is unknown
2.Cmake Error at Cmakelists.txt: 3 <project>The CMARE C COMIPIAERC: /Program Files/CL/Bin/C.E&Eis not a full path to an existing compiler tool
CMakeError.log中:
1.Compiling the C compiler identification source file "CMakeCCompilerId.c" failed.
2.Checking whether the C compiler is IAR using "" did not match "IAR .+ Compiler":Compiler: cl
cmake-gui中:
does not exist. Specify --help for usage, or press the help button on the CMake GUI.

解决办法

就是换种方法添加路径,在cmd中输入以下命令然后回车,注意分别为mingw的bin路径和cmake exe的路径

@echo off
set path=C:\Program Files\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;
"C:\Program Files\CMake\bin\cmake-gui.exe"
使用方法

1.cmake …(有的时候会失效,又会找不到编译器,建议直接用cmake-gui,需要file-delete cache)
在这里插入图片描述
2.mingw32-make
 如果是MinGW,ubuntu的make 在windows中是mingw32-make
 如果是MSVC,ubuntu的make 在windows中是 nmake
3.在cmd中直接运行可执行文件

Logo

更多推荐