gpt4 book ai didi

C++ 清理成功,构建失败,目录丢失?

转载 作者:行者123 更新时间:2023-11-28 05:23:13 25 4
gpt4 key购买 nike

所以我是 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)

感谢一些帮助问候

最佳答案

-include 选项用于将特定文件包含到当前源文件中。使用例如-include somefile.h 与在源文件顶部执行 #include "somefile.h" 相同。

这里的问题是您试图包含一个完整的目录,而不是单个文件。这是无效的。

猜想您真正想要的是-I 选项,它将路径 添加到搜索系统头文件的路径列表中.

关于C++ 清理成功,构建失败,目录丢失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41041623/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com