4

我正在尝试制作一个简单的“Hello World!” 在 NetBeans IDE 7.3 中使用 MinGW 作为我的 C++ 编译器的程序。

我遇到了构建失败,我不知道为什么。

这是我的编译器设置:

  • 家庭:MinGW
  • 基本目录:C:\MinGW
  • C 编译器:C:\MinGW\bin\gcc.exe
  • C++ 编译器:C:\MinGW\bin\g++.exe
  • 汇编程序:C:\MinGW\bin\as.exe
  • 制作命令:C:\MinGW\msys\1.0\bin\make.exe
  • 调试器命令:C:\MinGW\bin\gdb.exe

我确保我的环境 PATH 指向C:\MinGW\binC:\MinGW\msys\1.0\bin

我的代码是:

#include <iostream>
using namespace std;
int main()
{
    cout << "Hello World!" << endl;
    return 0;
}

尝试构建项目后,我从 NetBeans 调试输出中收到以下消息:

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/c/NetBeansProjects/HelloWorld'
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/helloworld.exe
make[2]: Entering directory `/c/NetBeansProjects/HelloWorld'
mkdir -p build/Debug/MinGW-Windows
rm -f build/Debug/MinGW-Windows/main.o.d
g++    -c -g -MMD -MP -MF build/Debug/MinGW-Windows/main.o.d -o build/Debug/MinGW-Windows/main.o main.cpp
make[2]: g++: Command not found
make[2]: *** [build/Debug/MinGW-Windows/main.o] Error 127
make[2]: Leaving directory `/c/NetBeansProjects/HelloWorld'
make[1]: *** [.build-conf] Error 2
make[1]: Leaving directory `/c/NetBeansProjects/HelloWorld'
make: *** [.build-impl] Error 2


BUILD FAILED (exit value 2, total time: 1s)

我搜索了各种问答,但我似乎做的一切都是正确的。

4

3 回答 3

4

右键单击我的电脑并选择属性。单击高级系统设置。系统属性对话框将打开。单击环境变量。编辑 PATH 变量并添加 C:\MinGW\msys\1.0\bin

于 2014-07-09T06:28:40.797 回答
1

您在 netbeans 上的设置应如下所示

Base Directory: C:\MinGW\bin 
C Compiler: C:\MinGW\bin\gcc.exe 
C++ Compiler: C:\MinGW\bin\g++.exe 
Fortran Compiler: C:\MinGW\bin\gfortran.exe 
Assembler: C:\MinGW\bin\as.exe 
Make Command: C:\MinGW\msys\1.0\bin\make.exe 
Debbuger Command: C:\MinGW\bin\gdb.exe

将这些添加到您的环境变量中

C:\MinGW\bin and C:\MinGW\msys\1.0\bin

如果您在安装 MINGW 和设置环境 PATH 之前/期间在 netbeans 上设置了设置,则可能会发生这种情况。

只需重新启动netbeans

于 2015-04-21T15:01:04.163 回答
-2

您在安装后从 mingw 或 sourceforge.net 下载 mysys,路径为 C:\Mysys\1.0\bin\make.exe 以在 netbean ide 中提供 make 编译器的路径。

于 2013-08-08T15:56:16.000 回答