无法使用MinGW C ++在NetBeans IDE 7.3中编译“Hello World”

时间:2013-05-01 18:53:37

标签: c++ netbeans mingw

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

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

这是我的编译器设置:

  • 家庭: 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 \ bin C:\ 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)

我搜索了各种Q&amp; A,但我似乎正在做正确的事情。

3 个答案:

答案 0 :(得分:4)

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

答案 1 :(得分: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之前/期间设置netbeans设置并设置环境路径,则会发生这种情况。

重新启动netbeans

答案 2 :(得分:-2)

安装后你下载mysys表格mingw或sourceforge.net,路径是C:\ Mysys \ 1.0 \ bin \ make.exe给netbean ide中的make编译器路径。