aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xutils/buildit/build_llvm3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm
index 48d30f7..cc2fd08 100755
--- a/utils/buildit/build_llvm
+++ b/utils/buildit/build_llvm
@@ -201,7 +201,8 @@ cd $SYM_DIR || exit 1
rm -rf * || exit 1
# Generate .dSYM files
-find $DEST_DIR -perm -0111 -type f -print | xargs -n 1 -P ${SYSCTL} dsymutil
+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} dsymutil
# Save .dSYM files and .a archives
cd $DEST_DIR || exit 1