mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 23:29:51 +00:00
Small fix for the 'strip' command. Do a list of .so files.
llvm-svn: 64112
This commit is contained in:
parent
d040b30c1d
commit
3f8a7a8f5d
@ -176,8 +176,8 @@ echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DES
|
||||
if [ "x$LLVM_DEBUG" != "x1" ]; then
|
||||
# Strip local symbols from llvm libraries.
|
||||
strip -S $DEST_DIR$DEST_ROOT/lib/*.[oa]
|
||||
for file in $DEST_DIR$DEST_ROOT/lib/*.so; do
|
||||
strip -Sx $file
|
||||
for f in `ls $DEST_DIR$DEST_ROOT/lib/*.so`; do
|
||||
strip -Sx $f
|
||||
done
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user