From 82934f2355da7ffb93da8bd14c06ae1b706fee5f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 10 Apr 2009 17:45:16 +0000 Subject: Don't run "dsymutils" on .a files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@68795 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/buildit/build_llvm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/buildit/build_llvm b/utils/buildit/build_llvm index 015b7ad..d11c7f8 100755 --- a/utils/buildit/build_llvm +++ b/utils/buildit/build_llvm @@ -235,8 +235,9 @@ cd $SYM_DIR || exit 1 rm -rf * || exit 1 # Generate .dSYM 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} dsymutil +find $DEST_DIR -perm -0111 -type f \ + ! \( -name '*.la' -o -name gccas -o -name gccld -o -name llvm-config -o -name '*.a' \) \ + -print | xargs -n 1 -P ${SYSCTL} dsymutil # Save .dSYM files and .a archives cd $DEST_DIR || exit 1 -- cgit v1.1