6

每次我尝试构建我的 c++ 文件时,我都会收到此错误

"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/c/Users/Joey/Documents/NetBeansProjects/C++Train'
"/usr/bin/make"  -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/c__train.exe
make[2]: Entering directory `/c/Users/Joey/Documents/NetBeansProjects/C++Train'
make[2]: mkdir: Command not found
mkdir -p build/Debug/MinGW-Windows
make[2]: Leaving directory `/c/Users/Joey/Documents/NetBeansProjects/C++Train'
make[1]: Leaving directory `/c/Users/Joey/Documents/NetBeansProjects/C++Train'
make[2]: *** [build/Debug/MinGW-Windows/HelloWorld.o] Error 127
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2


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

我检查了make.exe所在的目录,mkdir在那里,所以我很困惑。

我的代码本身没有显示错误:

#include <iostream>

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

只是一个简单的小 hello world 来测试 netbeans。

4

1 回答 1

5

我猜你没有将 msys 添加到你的 PATH 变量中。在Netbeans论坛中看到这个条目(http://forums.netbeans.org/topic38061.html)所以,你收到的错误信息并没有抱怨make,它抱怨它找不到mkdir,这应该是在您的 msys 目录中的目录中。将 C:\MinGW\msys\1.0\bin\ 添加到 Windows PATH 变量可能足以解决此问题。

于 2015-01-02T09:43:23.990 回答