Re: Stripping symbols
Re: Stripping symbols
- Subject: Re: Stripping symbols
- From: Tomas Zahradnicky <email@hidden>
- Date: Mon, 24 Jan 2005 14:47:35 +0100
I always used strip -u -r
Using such strip strips unfortunatelly the required exported symbol.
I solved that by using Shell Script Build Phase with the following
script:
if [ $BUILD_STYLE = "Deployment" ]; then
strip -u -r -i -s "$SOURCE_ROOT/$EXPORTED_SYMBOLS_FILE"
"$BUILT_PRODUCTS_DIR/$EXECUTABLE_PATH"
fi
-Tomas
--
# Ing. Tomas Zahradnicky, Jr.
# The Czech Technical University
# Dept of Computer Science, FEE-CTU Prague
_______________________________________________
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