我安装了netbeans来用c写代码,但是使用Mingw编译器有问题。它工作得很好,直到我尝试运行项目。首先,它无法找到cc1.exe,而试图运行它。当我找到它并手动复制到相同的文件夹时,又出现了一个错误。
"C:/bin/make.exe" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
C:binmake.exe[1]: Entering directory `D:/1/2/Skola/IZP/programovani/projekt4netbeans/CppApplication_6'
"C:/bin/make.exe" -f nbproject/Makefile-Debug.mk dist/Debug/MinGW_1-Windows/cppapplication_6.exe
C:binmake.exe[2]: Entering directory `D:/1/2/Skola/IZP/programovani/projekt4netbeans/CppApplication_6'
mkdir -p build/Debug/MinGW_1-Windows
rm -f build/Debug/MinGW_1-Windows/main.o.d
gcc.exe -c -g -MMD -MP -MF build/Debug/MinGW_1-Windows/main.o.d -o build/Debug/MinGW_1-Windows/main.o main.c
cc1: error: command line option '-lang-c' is valid for the driver but not for C
C:binmake.exe[2]: *** [build/Debug/MinGW_1-Windows/main.o] Error 1
C:binmake.exe[2]: Leaving directory `D:/1/2/Skola/IZP/programovani/projekt4netbeans/CppApplication_6'
C:binmake.exe[1]: *** [.build-conf] Error 2
C:binmake.exe[1]: Leaving directory `D:/1/2/Skola/IZP/programovani/projekt4netbeans/CppApplication_6'
C:binmake.exe: *** [.build-impl] Error 2
BUILD FAILED (exit value 2, total time: 2s)
如果有人能帮我……谢谢:) 确保你有当前版本的Netbeans和MinGw,并且你有一个正确的安装(为C/c++/Fortran配置Netbeans IDE)。
在mingw 不应该使用mingw/bin
中的 make
,而应该使用msys
中的 <mingw>/msys/1.0/bin/make.exe