我下载了最新版本的 minGW - mingw-w64-v2.0.6.tar.gz 。然后我提取到C:\MinGW
. 正如我在一些文章中看到的,现在我必须定义path
环境变量。现在 C:\MinGW
有 -
我试图将路径的变量值设置为C:\MinGW
,但是当我在 Eclipse Juno 中为某些项目构建路径时,我得到 -
make all
Cannot run program "make": Launching failed
Error: Program "make" not found in PATH
编辑:
我下载了 GCC+binutils 64 位,提取到c:\mingw64
,更改路径c:\mingw64\bin
并将构建命令更改为mingw32-make
. 现在,当我构建项目时出现错误 -
mingw32-make all
mingw32-make: *** No rule to make target `all'. Stop.
第二次编辑:
最后我通过选择成功运行了一个项目 -
请注意,它必须取消选中show project type and toolchians only if they are supported on the platform
否则不允许选择Executable Project type 。此外,构建命令应保持在“使用默认构建命令”上。