我看过: unresolved external symbol in eclipse cdt和Unresolved inclusion in Eclipse
我正在使用Eclipse CDT Neon版本:Neon.3版本(4.6.3)。
Eclipse CDT可以编译我的代码但由于某种原因,它会突出显示
#include <boost/algorithm/string.hpp>
#include <boost/algorithm/string/split.hpp>
为“未解决的包含”。
我已经为我的GCC编译器设置了包含路径(在属性 - > C / C ++构建 - >设置 - &gt;工具设置 - &gt;包含中),以便/ opt / boost,符号链接到/ opt / boost_1_63_0。它也可以访问:
$ ll /opt/boost/boost/algorithm/string.hpp
-rw-rw-r--. 1 myuser myuser 1061 Dec 22 2016 /opt/boost/boost/algorithm/string.hpp
我还注意到/ opt中其他标头的#include语句也有同样的问题。
知道如何解决这个问题吗?
我尝试重建索引几次。同样的问题。
感谢。