Re: Strip
Re: Strip
- Subject: Re: Strip
- From: Chris Espinosa <email@hidden>
- Date: Thu, 29 Sep 2005 10:07:51 -0700
On Sep 29, 2005, at 1:48 AM, Gerriet M. Denkmann wrote: How can I induce Xcode (2.0) to automatically strip the result of a Deployment build?
Check the "Deployment Postprocessing" and "Strip Linked Product" checkboxes in the target's Deployment configuration, and make sure
- DEPLOYMENT_POSTPROCESSING
- If this setting is turned on, then the product will be processed for deployment and release purposes — rather than for development and debugging purposes. As a result, the following operations will be performed on the built product:
- If STRIP_INSTALLED_PRODUCT is YES, then the produced binary will be stripped.
- Copy Files and Shell Script build phases set to “only run when installing” will be processed.
- The owner, group and mode of the produced files will be changed according to the relevant build settings.
- When performing an xcodebuild using the install build action, this setting will be set to YES for the duration of the build.
In general, you can do the following to answer such questions:
1) Choose "Edit Active Target" from the Project menu 2) Choose "All Configurations" and "All Settings from the popups in the Build tab 3) Enter a keyword, such as "strip", into the search bubble
All relevant project settings will be shown. If you select one, the explanatory text at the bottom of the inspector describes what the setting does. This is a pretty good way to figure out answers like this.
Chris |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >Strip (From: "Gerriet M. Denkmann" <email@hidden>) |