所以我是C ++的初学者,只是有了这个错误消息,Clean变得成功,构建因任何原因失败,而不是红色等等。在这种情况下,我真的不知道该怎么做。我检查了我的图书馆和路径,它们很好,所显示的线条确实没有意义,因为所有线条都是空白的。任何人都可以帮我弄清楚出了什么问题吗?
cd 'Z:\NetBeansProjects\Zahldarstellung2'
C:\msys\bin\make.exe -f Makefile CONF=Debug clean
"/C/msys/bin/make.exe" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .clean-conf
make.exe[1]: Entering directory `/z/NetBeansProjects/Zahldarstellung2'
rm -f -r build/Debug
rm -f dist/Debug/MinGW-Windows/zahldarstellung2.exe
make.exe[1]: Leaving directory `/z/NetBeansProjects/Zahldarstellung2'
CLEAN SUCCESSFUL (total time: 450ms)
cd 'Z:\NetBeansProjects\Zahldarstellung2'
C:\msys\bin\make.exe -f Makefile CONF=Debug
"/C/msys/bin/make.exe" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make.exe[1]: Entering directory `/z/NetBeansProjects/Zahldarstellung2'
"/C/msys/bin/make.exe" -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/zahldarstellung2.exe
make.exe[2]: Entering directory `/z/NetBeansProjects/Zahldarstellung2'
mkdir -p build/Debug/MinGW-Windows
rm -f "build/Debug/MinGW-Windows/GanzeZahl.o.d"
g++ -c -g -include . -MMD -MP -MF "build/Debug/MinGW-Windows/GanzeZahl.o.d" -o build/Debug/MinGW-Windows/GanzeZahl.o GanzeZahl.cpp
cc1plus.exe: fatal error: .: No such file or directory
compilation terminated.
nbproject/Makefile-Debug.mk:67: recipe for target `build/Debug/MinGW-Windows/GanzeZahl.o' failed
make.exe[2]: *** [build/Debug/MinGW-Windows/GanzeZahl.o] Error 1
make.exe[2]: Leaving directory `/z/NetBeansProjects/Zahldarstellung2'
nbproject/Makefile-Debug.mk:60: recipe for target `.build-conf' failed
make.exe[1]: *** [.build-conf] Error 2
make.exe[1]: Leaving directory `/z/NetBeansProjects/Zahldarstellung2'
nbproject/Makefile-impl.mk:39: recipe for target `.build-impl' failed
make.exe": *** [.build-impl] Error 2
BUILD FAILED (exit value 2, total time: 654ms)
感谢一些帮助 迎接
答案 0 :(得分:1)
-include
选项用作将特定文件包含到当前源文件中的方法。使用例如-include somefile.h
与在源文件顶部执行#include "somefile.h"
相同。
这里的问题是您尝试包含完整目录,而不是单个文件。这是无效的。
我猜测你真正想要的是-I
选项,它将路径添加到搜索系统头文件的路径列表中。