提问者:小点点

无法使用MinGW C在NetBeansIDE7.3中编译"Hello World"


我正在尝试制作一个简单的“Hello World!”NetBeansIDE7.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\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


共3个答案

匿名用户

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

匿名用户

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

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之前/期间在netbean上设置了设置,则可能会发生这种情况。

重启netbean就行了

匿名用户

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