本文介绍了Apple Mach-O链接器错误lxml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我刚刚将xcode升级到4.5,现在我在编译时遇到错误:
I just upgraded xcode to 4.5 and now i get an error when compiling :
ld: library not found for -lxml2.2.7.3
cland: error: linker command failed with exit code 1
我做了升级后不更改我的代码...
那么?
I did not change my code after the upgrade...So?
谢谢!
推荐答案
点击你的项目☞目标☞构建阶段☞链接二进制文件库
然后删除 lxml2.2.7.3.dylib
并添加 lxml2.dylib
(如果您的项目不依赖于该库的特定版本)。
Click on your projekt ☞ target ☞ build phases ☞ link binary with libraries
then remove lxml2.2.7.3.dylib
and add lxml2.dylib
(if your project does not depend on a specific version of that library).
这篇关于Apple Mach-O链接器错误lxml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!