我终于设法在Windows中编译了一个程序,这需要一段时间,如果没有这方面的帮助就不可能。这一切现在都有效,除了:“干净”收益率
/bin/sh: del: command not found
Makefile:44: recipe for target `clean' failed
make: *** [clean] Error 127
在makefile中,clean命令看起来像
clean:
del /S *.o *~ *.out [...], eliminating all resulting .o and executables resulting from make.
mingw64在路径中,我尝试在路径中使用cygwin/bin
而没有,两者都具有相同的结果。 “制作”已在mingw32-make
中使用msys
完成。我还在msys
尝试了“mingw-32-make clean”,但仍然没有运气;我也不确定Cygwin是否支持“make clean”。我在Windows 7,64位运行整个事情。
如何解决此问题?