libgmp-10.dll在NetGans 7.1中为MinGW丢失了错误

时间:2012-02-26 06:13:41

标签: ide mingw netbeans-7

我在Netbeans 7.1中安装了C / C ++插件并配置了MinGW。

enter image description here

但是当我运行代码时,它显示libgmp-10.dll缺少错误。我的IDE甚至显示它无法找到stdio.hstdlib.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

1 个答案:

答案 0 :(得分:0)

MinGW安装文件出现问题,我通过netbeans网站下载了一个新版本,它运行正常。 LINK

实际上,我在日志文件中发现MinGW无法下载导致错误的文件。