我正在尝试制作一个简单的“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\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)
我搜索了各种问答,但我似乎做的一切都是正确的。