Re: Migrating shared library plugins to Cocoa Touch Frameworks
Re: Migrating shared library plugins to Cocoa Touch Frameworks
- Subject: Re: Migrating shared library plugins to Cocoa Touch Frameworks
- From: Jens Alfke <email@hidden>
- Date: Sun, 04 Dec 2016 14:13:37 -0800
> On Dec 4, 2016, at 12:41 PM, Andreas Falkenhahn <email@hidden> 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 (email@hidden)
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:
This email sent to email@hidden