0

我现在正在使用Xcode 4.6但无法在设备上构建我的应用程序,但可以在模拟器上完美运行。它看起来是我的lbxml2,我已经遵循了其他用户给出的解决方案,比如添加"${SDK_DIR}/usr/include/libxml2"Header Search Pathsunder Build Setting,包括在Link Binary With LibrariesunderBuild Phases但仍然没有运气。

在我切换到之前Xcode 4.6,它正在建立Xcode 4.5。所以,我真的不知道出了什么问题。

谢谢!

编辑:

我收到此错误:

ld: library not found for -lxml2
clang-real++: error: linker command failed with exit code 1 (use -v to see invocation)
Command /Applications/Xcode 4.6/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ failed with exit code 1
4

1 回答 1

0

您如何尝试链接您的图书馆?

构建设置中的“-lxml2”行?

当我将我的 dylib 添加到我的项目中时,我通常会按照您在屏幕截图中看到的方式进行操作。

试试这个,看看它是否也适合你:

以这种方式添加库

于 2013-07-11T02:57:41.320 回答