当前位置:网站首页>Cmake post makefile:32: * * * missing separator Stop.
Cmake post makefile:32: * * * missing separator Stop.
2022-06-30 06:41:00 【Mnnk】
problem
windows Next use cmake .. after make (mingw32-make) Report errors :
Makefile:32: *** missing separator. Stop.
32 Row content :
!IF "$(OS)" == "Windows_NT"
NULL=
!ELSE
NULL=nul
!ENDIF
SHELL = cmd.exe
solve
Default generation NMake Makefiles, You should use nmake Compile .
have access to cmake .. -G "MinGW Makefiles" Build support mingw Of Makefile file .
cmake -help You can see Generators, My default build NMake Makefiles
Borland Makefiles = Generates Borland makefiles.
* NMake Makefiles = Generates NMake makefiles.
NMake Makefiles JOM = Generates JOM makefiles.
MSYS Makefiles = Generates MSYS makefiles.
MinGW Makefiles = Generates a make file for use with
边栏推荐
猜你喜欢
随机推荐
Suggestion: use tools:overrideLibrary
A small template (an abstract class, a complete process is written in a method, the uncertain part is written in the abstract method, and then the subclass inherits the abstract class, and the subclas
记录一次腾讯测试开发工程师自动化接口测试实践经验
Subnet division and subnet summary
写一个C程序判断系统是大端字节序还是小端字节序
C language: exercise 3
Base64 explanation: playing with pictures Base64 encoding
Picture.....
Usage of case, casez and casex statements in Verilog
First experience of Galaxy Kirin
Four tips in numpy
RT thread Kernel Implementation (II): critical area, object container
Redux source code implementation
Spin official tutorial
Introduction to neural networks
IO streams (common streams)
0基础转行软件测试,如何实现月薪9.5k+
Pycharm shortcut key
KEIL - 下载调试出现“TRACE HW not present”
Idea run SQL file









