mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-28 06:00:28 +00:00
Default to a better compression algorithm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195567 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3fae4b8fed
commit
1fcb390d43
@ -27,6 +27,7 @@ Release=""
|
||||
Release_no_dot=""
|
||||
RC=""
|
||||
Triple=""
|
||||
use_gzip="no"
|
||||
do_checkout="yes"
|
||||
do_ada="no"
|
||||
do_clang="yes"
|
||||
@ -58,6 +59,7 @@ function usage() {
|
||||
echo " -test-debug Test the debug build. [default: no]"
|
||||
echo " -test-asserts Test with asserts on. [default: no]"
|
||||
echo " -no-compare-files Don't test that phase 2 and 3 files are identical."
|
||||
echo " -use-gzip Use gzip instead of xz."
|
||||
}
|
||||
|
||||
while [ $# -gt 0 ]; do
|
||||
@ -119,6 +121,9 @@ while [ $# -gt 0 ]; do
|
||||
-no-compare-files | --no-compare-files )
|
||||
do_compare="no"
|
||||
;;
|
||||
-use-gzip | --use-gzip )
|
||||
use_gzip="yes"
|
||||
;;
|
||||
-help | --help | -h | --h | -\? )
|
||||
usage
|
||||
exit 0
|
||||
@ -382,7 +387,11 @@ function package_release() {
|
||||
cwd=`pwd`
|
||||
cd $BuildDir/Phase3/Release
|
||||
mv llvmCore-$Release-$RC.install $Package
|
||||
tar cfz $BuildDir/$Package.tar.gz $Package
|
||||
if [ "$use_gzip" = "yes" ]; then
|
||||
tar cfz $BuildDir/$Package.tar.gz $Package
|
||||
else
|
||||
tar cfJ $BuildDir/$Package.tar.xz $Package
|
||||
fi
|
||||
mv $Package llvmCore-$Release-$RC.install
|
||||
cd $cwd
|
||||
}
|
||||
@ -588,6 +597,10 @@ set +e
|
||||
|
||||
# Woo hoo!
|
||||
echo "### Testing Finished ###"
|
||||
echo "### Package: $Package.tar.gz"
|
||||
if [ "$use_gzip" = "yes" ]; then
|
||||
echo "### Package: $Package.tar.gz"
|
||||
else
|
||||
echo "### Package: $Package.tar.xz"
|
||||
fi
|
||||
echo "### Logs: $LogDir"
|
||||
exit 0
|
||||
|
Loading…
Reference in New Issue
Block a user