> On Dec 4, 2016, at 12:41 PM, Andreas Falkenhahn <andr...@falkenhahn.com> > wrote: > > However, it seems like *all* symbols are exported to the dylib > inside the Cocoa Touch Framework. How can I configure Xcode to > export only certain symbols? I want to name the symbols that > should be exported explicitly.
Use a “.exp” file. It simply lists symbols, one per line. They need to have the same naming convention the linker gives them, so most symbols should have an “_” prefixed to them. Then there’s a target build setting named something like “Use exported symbol file”; set that to the path to the .exp file. —Jens _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com