我目前正在使用 Eclipse Juno 以及 CDT 和 Cygwin C++ 开发一个介绍性 C++ 项目。我正在使用 MVC 架构,并且刚刚获得了可以运行可执行文件并查看一些结果的代码。当我构建应用程序时,编译器不会抛出任何错误;但是,当我通过 Eclipse 运行应用程序时,应用程序会重新构建并显示以下错误:
make: *** multiple target patterns. Stop. GasFinderTUI.d KyleGasStationFinder/Debug/src/View line 1 C/C++ Problem
这是该文件中的代码:
src/Controller/GasFinderController.d src/Controller/GasFinderController.o: \
../src/Controller/GasFinderController.cpp \
../src/Controller/GasFinderController.h \
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/LocalGasStations.h \
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/GasStation.h \
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/GasPump.h \
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/Utilities.h
../src/Controller/GasFinderController.h:
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/LocalGasStations.h:
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/GasStation.h:
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/GasPump.h:
C:/Users/Kyle/Dropbox/Workbench/KyleGasStationFinder/src/Model/Utilities.h:
我已经尝试清理和重建,而不使用 run 功能,并且应用程序构建得很干净。我还在没有 Eclipse 的情况下运行了实际的 .exe 文件,并且应用程序按预期运行。尽管与 Eclipse 分开运行应用程序是一种可接受的替代方案,但我将在不久的将来用 C++ 编写几个应用程序,并且希望能够从 Eclipse 中执行。这些应用程序也将使用 Eclipse 进行检查和评分,我相信我的导师也会喜欢这种便利。
我看过这个问题,它建议将 C:/ 更改为相对路径名或 /cygwin/c/。我的其他 .d 文件以及我的包含路径使用相对路径,这些文件没有问题。尽管我相信这两种解决方案都可以工作,但每次编译都会重新创建 .d 文件。我所做的所有更改都已在每次构建时被覆盖。
Eclipse 和/或 Cygwin C++ 是否包含任何可能允许我防止这种并发症在未来发生的设置?