当前位置: 首页 > 工具软件 > program-o > 使用案例 >

process_begin: CreateProcess(NULL, cc -c -o sqlite.o sqlite.c, ...) failed.make (e=2): 系统找不到指定的文件。

鄂琛
2023-12-01

在windows中用codeblock自带的MinGW的编译器进行makefile编译,出现如下错误:

process_begin: CreateProcess(NULL, cc -c -o sqlite.o sqlite.c, ...) failed.make (e=2): 系统找不到指定的文件。

发现原因是找不到cc这个编译器,但是我指定了MinGW的环境变量,为什么不会自动用gcc.exe呢, 后来发现就是没有找到导致的报错。实际使用的是cc编译器,而确实是没有找到cc,那么怎么指定呢, 原来makefile中默认的编译器选项为CC(注意大写)这个变量指定的,所以在脚本中指定:

set CC=gcc.exe

出现了正确的打印信息,即开始编译。

E:\web\device_share\device_share>make
gcc.exe    -c -o cgi.o cgi.c
cgi.c: In function 'dis_rest':
cgi.c:100:21: warning: implicit declaration of function 'update_device_isuse' [-Wimplicit-function-declaration]
                     update_device_isuse(g_gb, id, use);
                     ^~~~~~~~~~~~~~~~~~~

build.bat

set path=%path%;"D:\Program Files\CodeBlocks\MinGW\bin\"

set CC=gcc.exe

makefile 


device.cgi : cgi.o sqlite.o 
	gcc.exe -o device.cgi cgi.o sqlite.o  

cgi.o : cgi.c
	gcc.exe    -c -o cgi.o cgi.c
sqlite.o : sqlite.c
	gcc.exe    -c -o sqlite.o sqlite.c

 类似资料: