Re: DEPLOYMENT_POSTPROCESSING
Re: DEPLOYMENT_POSTPROCESSING
- Subject: Re: DEPLOYMENT_POSTPROCESSING
- From: Chris Espinosa <email@hidden>
- Date: Tue, 15 Jun 2004 11:49:28 -0700
On Jun 15, 2004, at 10:52 AM, Mark's Studio wrote:
> Im building a AudioUnit and if i use
> DEPLOYMENT_POSTPROCESSING = YES
> the AudioUnit is not working?
>
> what is postprocessing doing?
From Xcode's Help menu, choose Show Build Settings Notes
Search for DEPLOYMENT_PREPROCESSING
It says:
DEPLOYMENT_POSTPROCESSING
This setting having a value of YES indicates that binaries should be
stripped and file mode, owner, and group information should be set to
standard values. See also the notes on the base location for installed
products.
"Stripped" means that it has no symbolic information. Mode, Owner, and
Group information means ownership and permissions.
I expect that stripping is making linkage or dynamic loading fail, and
you need to either not strip your binarues, or provide an .exp file
that details the symbols you want to be exported, i.e. not stripped.
Chris
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.