[llvm-commits] [llvm-gcc-4.2] r56074 - /llvm-gcc-4.2/trunk/build_gcc
Jim Grosbach
grosbach at apple.com
Wed Sep 10 15:27:51 PDT 2008
Author: grosbach
Date: Wed Sep 10 17:27:50 2008
New Revision: 56074
URL: http://llvm.org/viewvc/llvm-project?rev=56074&view=rev
Log:
libstdc++.dylib is copied from the environment, not built locally, so it shouldn't be modified here
Modified:
llvm-gcc-4.2/trunk/build_gcc
Modified: llvm-gcc-4.2/trunk/build_gcc
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/build_gcc?rev=56074&r1=56073&r2=56074&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/build_gcc (original)
+++ llvm-gcc-4.2/trunk/build_gcc Wed Sep 10 17:27:50 2008
@@ -562,8 +562,9 @@
| xargs strip || exit 1
# APPLE LOCAL begin LLVM - Strip with -Sx instead of -SX
find $DEST_DIR \( -name \*.a -or -name \*.dylib \) \
- \! -name libgcc_s.10.*.dylib -type f -print \
- | xargs strip -SX || exit 1
+ \! -name libgcc_s.10.*.dylib \! -name libstdc++.dylib -type f \
+ -print \
+ | xargs strip -SX || exit 1
# APPLE LOCAL end LLVM - Strip with -Sx instead of -SX
find $DEST_DIR -name \*.a -type f -print \
| xargs ranlib || exit 1
More information about the llvm-commits
mailing list