嗨,
我有以下内容:#include <libxml++/libxml++.h>
,当我编译时说fatal error: libxml++/libxml++.h.No such file or directory
。我已经 checkin 目录:/usr/include/libxml++-2.6/libxml++,那里是libxml ++。h。我哪里错了?为什么我会收到此错误?谢谢
编辑:
我确实包括了g++ prg.cpp -o prg -I / usr / include / libxml ++-2.6 /,现在我有了
error:fatal error: glibmm/ustring.h: No such file or directory
最佳答案
您应该使用pkg-config获得正确的编译器选项。例如,请参阅:
http://developer.gnome.org/libxml++/stable/
关于c++ - c++错误libxml++没有这样的文件或目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6014033/