我終於設法在Windows中編譯一個程序,這花了一段時間,如果沒有這方面的幫助,將無法完成。它所有的工作,現在,除了:「使清潔」產量MSYS/Cygwin中的「make clean」問題
/bin/sh: del: command not found
Makefile:44: recipe for target `clean' failed
make: *** [clean] Error 127
在生成文件,清理命令看起來像
clean:
del /S *.o *~ *.out [...], eliminating all resulting .o and executables resulting from make.
mingw64是路徑,我在路徑與cygwin/bin
嘗試和沒有,兩者都有相同的結果。 「製作」是在msys
中用mingw32-make
完成的。我還試過msys
中的「mingw-32-make clean」,仍然沒有運氣;我也不確定Cygwin是否支持「make clean」。我在Windows 7,64位上運行整個事情。
我該如何解決這個問題?