Barrie
Barrie

Reputation: 1

Xcode 3.2.5 Cocoa project modifies linked 3rd party dylib. Why?

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

Answers (1)

NSGod
NSGod

Reputation: 22958

Take a look in the Target Build Settings under the Deployment heading to make sure Strip Debug Symbols During Copy is unchecked.

enter image description here

Then Clean All, and rebuild.

Upvotes: 2

Related Questions