我在Netbeans 7.1中安装了C / C ++插件并配置了MinGW。
但是当我运行代码时,它显示libgmp-10.dll缺少错误。我的IDE甚至显示它无法找到stdio.h
,stdlib.h
。[代码上有一些带下划线的标记](我在系统路径变量中配置了“C:\ MinGW \ bin”)< / p>
这是代码:
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char** argv) {
printf("working")
return (EXIT_SUCCESS);
}
这是我得到的输出。
"/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory `/c/Users/suryak/Documents/NetBeansProjects/CppApplication_1'
"/bin/make" -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/cppapplication_1.exe
make[2]: Entering directory `/c/Users/suryak/Documents/NetBeansProjects/CppApplication_1'
mkdir -p build/Debug/MinGW-Windows
rm -f build/Debug/MinGW-Windows/main.o.d
gcc.exe -c -g -MMD -MP -MF build/Debug/MinGW-Windows/main.o.d -o build/Debug/MinGW-Windows/main.o main.c
make[2]: *** [build/Debug/MinGW-Windows/main.o] Error 1
make[1]: *** [.build-conf] Error 2
make: *** [.build-impl] Error 2
make[2]: Leaving directory `/c/Users/suryak/Documents/NetBeansProjects/CppApplication_1'
make[1]: Leaving directory `/c/Users/suryak/Documents/NetBeansProjects/CppApplication_1'
BUILD FAILED (exit value 2, total time: 12s)
我仍然不明白为什么会这样。
我尝试在CMake选项中添加“make.exe”,但它甚至没有用。
C:\MinGW\msys\1.0\bin\make.exe