mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 02:33:33 +00:00
Strip resulting binaries.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107112 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8eab75f390
commit
0a1bd2abf6
@ -331,8 +331,15 @@ rm -f lib/libLTO.a lib/libLTO.la
|
|||||||
# Remove debugging information from DEST_DIR.
|
# Remove debugging information from DEST_DIR.
|
||||||
|
|
||||||
cd $DIR || exit 1
|
cd $DIR || exit 1
|
||||||
|
|
||||||
find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
|
find $DEST_DIR -name \*.a -print | xargs ranlib || exit 1
|
||||||
find $DEST_DIR -name \*.dSYM -print | xargs rm -r || 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 -h -R wheel $DEST_DIR
|
||||||
chgrp -R wheel $DEST_DIR
|
chgrp -R wheel $DEST_DIR
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user