无法在 iPhone 上使用 Libxml
我尝试使用 libxml2.2 解析我的 iPhone 应用程序中的 XML 文件,但遇到问题。我不断收到“错误:libxml/tree.h:没有这样的文件或目录”之类的错误。在此处和互联网上进行一些搜索后,我发现您需要将“/usr/include/libxml2”添加到标头搜索路径中。我已经这样做了,但仍然遇到同样的问题。有人知道发生了什么事吗?
完全相同的代码在同事的计算机上运行得很好,但在我的计算机上却不行。
im trying to use libxml2.2 to parse an XML file in my iPhone app but I'm having problems. i keep getting errors like "error: libxml/tree.h: No such file or directory". after doing some searching on here and on the internet in general i found that you need to add "/usr/include/libxml2" to the Header Search Paths. i have done this and i'm still having the same problem. anybody have any idea what is going on?
also the exact same code works just fine on a coworker's computer but not on mine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否添加了
"usr/include/libxml2"
或"/usr/include/libxml2"
(路径开头有一个正斜杠)Did you add
"usr/include/libxml2"
or"/usr/include/libxml2"
(there's a forward slash at the beginning of the path)另外,不要忘记将
-lxml2
添加到其他链接器标志Also don't forget to add
-lxml2
to Other Linker Flags