Strip resulting binaries.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107112 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2010-06-29 01:08:57 +00:00
parent 8eab75f390
commit 0a1bd2abf6

View File

@ -331,8 +331,15 @@ rm -f lib/libLTO.a lib/libLTO.la
# Remove debugging information from DEST_DIR.
cd $DIR || exit 1
find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
find $DEST_DIR -name \*.dSYM -print | xargs rm -r || exit 1
# Strip debugging information from files
find $DEST_DIR -perm -0111 -type f \
! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config \) \
-print | xargs -n 1 -P ${SYSCTL} strip -S
chgrp -h -R wheel $DEST_DIR
chgrp -R wheel $DEST_DIR