成功安装猛禽(librdf.org)后,我运行g++ test.cpp进行编译。但是获取raptor2.h: No such file or directory

所以我将/usr/include/raptor2/raptor2.h复制到/usr/include/raptor2.h,并且上面的错误消失了。但是会出现一个新错误:undefined reference to `raptor_new_world_internal'

有人可以告诉我有什么问题吗,谢谢。环境:ubuntu 12.04。

最佳答案

与其复制头文件,不如尝试
#include <raptor2/raptor2.h>
并使用g++ test.cpp -lraptor2进行编译。您需要链接到库才能使用它。

关于c++ - librdf编译错误,未定义对raptor_new_world_internal的引用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28061183/

10-13 01:12