Xcode 3.2.5 Cocoa 项目修改了链接的第 3 方 dylib。为什么?
我正在将第 3 方 dylib 链接到可可项目中。
我安排 Xcode 将其复制到应用程序的 Frameworks 目录中。
但是当我将原始 dylib 与 Frameworks 中的 dylib 进行 cmp 时,我发现第 3 方 dylib 已被修改。我有一些旧的 Xcode cocoa 项目不这样做,即 Frameworks 中的 dylib 与原始项目相同。
我尝试修改 Xcode 项目来隔离导致 dylib 被修改的原因,但到目前为止还没有成功。有什么想法吗?
I'm linking a 3rd party dylib into a cocoa project.
I arrange for Xcode to copy it into the Frameworks directory of the app.
But when I cmp the original dylib with the dylib in Frameworks I discover the 3rd party dylib has been modified. I have some old Xcode cocoa projects which don't do this, i.e. the dylib in Frameworks is the same as the original.
I've tried modifying the Xcode projects to isolate what is causing the dylib to be modified but so far no luck. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看“部署”标题下的“目标构建设置”,确保未选中“复制期间删除调试符号”。
然后清理全部并重建。
Take a look in the Target Build Settings under the Deployment heading to make sure
Strip Debug Symbols During Copy
is unchecked.Then Clean All, and rebuild.