0

我安装了 MinGW,并将它与 netbeans 一起使用。但是,当我尝试运行一个简单的“Hello world”程序时,它给了我以下错误:

"/C/msys/1.0/bin/make.exe" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-     conf
make.exe[1]: Entering directory `/c/Users/Notandi/Documents/NetBeansProjects/somegame'
"/C/msys/1.0/bin/make.exe"  -f nbproject/Makefile-Debug.mk dist/Debug/MinGW_1-   Windows/somegame.exe
make.exe[2]: Entering directory `/c/Users/Notandi/Documents/NetBeansProjects/somegame'
mkdir -p dist/Debug/MinGW_1-Windows
g++     -o dist/Debug/MinGW_1-Windows/somegame build/Debug/MinGW_1-Windows/main.o -   lmingw32 -lSDL2main -lSDL2.dll
c:/mingw/bin/../lib/gcc/mingw32/4.8.1/../../../../mingw32/bin/ld.exe: cannot open output    file dist/Debug/MinGW_1-Windows/somegame.exe: Permission denied
collect2.exe: error: ld returned 1 exit status
make.exe[2]: *** [dist/Debug/MinGW_1-Windows/somegame.exe] Error 1
make.exe[2]: Leaving directory `/c/Users/Notandi/Documents/NetBeansProjects/somegame'
make.exe[1]: *** [.build-conf] Error 2
make.exe[1]: Leaving directory `/c/Users/Notandi/Documents/NetBeansProjects/somegame'
make.exe": *** [.build-impl] Error 2


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

我检查了程序是否在后台运行,但不是。我使用 Windows 64 位并使用 MinGW for c++。

4

1 回答 1

0

我只是将 NetBeans 配置为使用 MinGW 并面临同样的不便,但很快就决定将 NetBeans 与“以管理员身份运行”一起使用,这会有所帮助(甚至在进一步的运行中不需要“以管理员身份运行”)。下周我可以用另一种方式重新安装 MinGW + MSYS。我引用:

如果 MSYS 安装在受限用户帐户下,则在稍后尝试构建和运行项目时,NetBeans IDE 可能会出现问题

于 2014-09-09T11:17:40.223 回答