summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/buildit/build_llvm7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm
index 3c2703cce0..0c64439078 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