我使用 Eclipse 已经有一段时间了,这让我很受阻。几周前,我创建了一个名为 ITS8410_LIB 的库,然后在我开发一个名为 Reach_Lib 的支持库时让它坐下来。该目录包括我第一次创建项目时添加的路径,工作正常。今天我完成了Reach_Lib,并去添加它的路径到ITS8410_Lib。我使用项目属性 C++ 设置来添加工作区路径(就像我之前做过很多次一样)。我只有一个构建配置。路径显示在图像中(以蓝色突出显示的是我在这个问题中谈论的特定路径)。
当我将文件包含在源代码中时,Eclipse(我看到黄色问号)和编译器(我收到编译器错误)都无法找到该文件。如果我使用完整的绝对路径语法添加目录路径,结果是相同的。我可以修改源代码并通过当前目录的完整相对路径指定#include,然后找到它。Eclipse 只是不会使用项目设置中指定的路径。这个相同的 Reach_Lib 有一个关联的单元测试项目,并且路径是从那里使用工作区设置指定的,它工作正常。
今天之前添加的目录路径看起来很好。我今天添加的路径(有两个库显示了这种行为)似乎被忽略了。我查看了编译器设置(见下图),指定给编译器的路径似乎没问题。
在 Windows7 64 位下运行(但使用 Eclipse Indigo 的 32 位版本)。我试过了:
- 重建索引
- 多次退出并重新启动 Eclipse
- 工作区和绝对文件路径
- 修改包含路径的顺序
- 项目中的不同 .h 包含文件
更新
我查看了 .cproject 文件,虽然我不太了解这些文件应该是什么样子,但我认为我有问题。也许问题是:我如何告诉 Eclipse 重建 .cproject 文件?我似乎有两个相似的部分,Eclipse 变得很困惑。我可以看到标记为后缀的不同版本号。在我看来,可视化编辑器让我修改一个部分,但 IDE 和编译器只关心另一部分。这是相关部分
...
<folderInfo id="nbeclipse.toolchain.nbl.rel.396284009." name="/" resourcePath="">
<toolChain id="nbeclipse.toolchain.nbl.rel.tc.1465290409" name="NetBurner Device Library" superClass="nbeclipse.toolchain.nbl.rel.tc">
<targetPlatform id="nbeclipse.toolchain.nbl.rel.tc.targetPlatform.283367649" isAbstract="false" name="NetBurner Module Library" superClass="nbeclipse.toolchain.nbl.rel.tc.targetPlatform"/>
<builder buildPath="${workspace_loc:/ITS8410_Lib/Release}" id="nbeclipse.toolchain.nbl.rel.tc.builder.2064025940" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Release ELF builder (MINGW)" superClass="nbeclipse.toolchain.nbl.rel.tc.builder"/>
<tool id="nbeclipse.toolchain.nbl.rel.tc.gcc.278195048" name="GNU C Compiler" superClass="nbeclipse.toolchain.nbl.rel.tc.gcc">
<inputType id="nbeclipse.toolchain.nbl.rel.tc.gcc.input.1060035859" name="GNU C Input" superClass="nbeclipse.toolchain.nbl.rel.tc.gcc.input"/>
</tool>
<tool id="nbeclipse.toolchain.nbl.rel.tc.gpp.767008127" name="GNU C++ Compiler" superClass="nbeclipse.toolchain.nbl.rel.tc.gpp">
<option id="nbeclipse.toolchain.super.gcc.directories.includepaths.1666029541" name="Include paths (-I)" superClass="nbeclipse.toolchain.super.gcc.directories.includepaths" valueType="includePath">
**inside here is an option list with all my include paths**
...
</folderInfo>
然后在 folderInfo 关闭标记之后,另一个 folderInfo 部分开始
<folderInfo id="nbeclipse.toolchain.nbl.rel.396284009.2022231003" name="/" resourcePath="src">
<toolChain id="nbeclipse.toolchain.nbl.rel.tc.1982112905" name="NetBurner Device Library" superClass="nbeclipse.toolchain.nbl.rel.tc" unusedChildren="">
<targetPlatform id="nbeclipse.toolchain.nbl.rel.tc.targetPlatform" isAbstract="false" name="NetBurner Module Library" superClass="nbeclipse.toolchain.nbl.rel.tc.targetPlatform"/>
<tool id="nbeclipse.toolchain.nbl.rel.tc.gcc.1671008421" name="GNU C Compiler" superClass="nbeclipse.toolchain.nbl.rel.tc.gcc.278195048">
<inputType id="nbeclipse.toolchain.nbl.rel.tc.gcc.input.436341699" name="GNU C Input" superClass="nbeclipse.toolchain.nbl.rel.tc.gcc.input"/>
</tool>
<tool id="nbeclipse.toolchain.nbl.rel.tc.gpp.498310867" name="GNU C++ Compiler" superClass="nbeclipse.toolchain.nbl.rel.tc.gpp.767008127">
**the newly added paths don't show up here, if I add them manually things start working**