无法在Netbeans中编译Hello World

时间:2014-05-03 22:58:47

标签: c++ netbeans

当我在Netbeans中编译这个程序时,程序显示输出中的文本 - 我做错了什么导致了这个错误,我该如何修复它?

这是我使用的代码:

/* 
 * File:   main.cpp
 * Author: Oliver
 *
 * Created on May 4, 2014, 12:33 AM
 */
#include <iostream>
using namespace std;

int main(int argc, char** argv) {
    cout << "Hello World!";
    return 0;
}

这是结果......:

"/C/MinGW/msys/1.0/bin/make.exe" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make.exe[1]: Entering directory `/c/sers/Oliver/Documents/NetBeansProjects/Learning'
"/C/MinGW/msys/1.0/bin/make.exe"  -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/learning.exe
make.exe[2]: Entering directory `/c/sers/Oliver/Documents/NetBeansProjects/Learning'
mkdir -p build/Debug/MinGW-Windows
make.exe[2]: mkdir: Command not found
make.exe[2]: *** [build/Debug/MinGW-Windows/main.o] Error 127
make.exe[2]: Leaving directory `/c/sers/Oliver/Documents/NetBeansProjects/Learning'
make.exe[1]: *** [.build-conf] Error 2
make.exe[1]: Leaving directory `/c/sers/Oliver/Documents/NetBeansProjects/Learning'
make.exe": *** [.build-impl] Error 2

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

2 个答案:

答案 0 :(得分:0)

查看/C/MinGW/msys/1.0/bin/ mkdir.exe

如果您在那里找到它,则表示您尚未将path environment variable设置为该文件夹。

C:\MinGW\msys\1.0\bin;C:\MinGW\bin;

首先添加它。

我为这种有点不典型的照片道歉。 Binn目前正在使用win2000计算机,无法切换。

enter image description here

答案 1 :(得分:0)

如果这还不够,可以手动设置&#34; make.exe&#34;进入C / C ++ NetBeans属性&gt;制作命令文本框。

它位于上一个答案中所述的路径中。

C:\ MinGW的\ MSYS \ 1.0 \ BIN \的make.exe