Reputation: 1
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?
Upvotes: 0
Views: 231
Reputation: 22958
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.
Upvotes: 2