From: Bill Wendling Date: Tue, 29 Jun 2010 01:08:57 +0000 (+0000) Subject: Strip resulting binaries. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0a1bd2abf6d2ef526965977d6f069b6370095913;p=oota-llvm.git Strip resulting binaries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107112 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm index 3c2703cce0e..0c64439078a 100755 --- a/utils/buildit/build_llvm +++ b/utils/buildit/build_llvm @@ -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