mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
Don't strip things when we're doing a debug build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48696 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2b4f780585
commit
28ecd49e9b
@ -141,9 +141,11 @@ fi
|
||||
echo "#define LLVM_VERSION ${RC_ProjectSourceVersion}" > $DEST_DIR$DEST_ROOT/include/llvm/Version.h
|
||||
echo "#define LLVM_MINOR_VERSION ${RC_ProjectSourceSubversion}" >> $DEST_DIR$DEST_ROOT/include/llvm/Version.h
|
||||
|
||||
# Strip local symbols from llvm libraries.
|
||||
strip -S $DEST_DIR$DEST_ROOT/lib/*.[oa]
|
||||
strip -Sx $DEST_DIR$DEST_ROOT/lib/*.so
|
||||
if [ "x$LLVM_DEBUG" != "x1" ]; then
|
||||
# Strip local symbols from llvm libraries.
|
||||
strip -S $DEST_DIR$DEST_ROOT/lib/*.[oa]
|
||||
strip -Sx $DEST_DIR$DEST_ROOT/lib/*.so
|
||||
fi
|
||||
|
||||
# Remove .dir files
|
||||
cd $DEST_DIR$DEST_ROOT
|
||||
|
Loading…
Reference in New Issue
Block a user