Merging r195567:

------------------------------------------------------------------------
r195567 | void | 2013-11-23 21:29:35 -0800 (Sat, 23 Nov 2013) | 1 line

Default to a better compression algorithm.
------------------------------------------------------------------------


git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_34@195568 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2013-11-24 05:30:06 +00:00
parent 0162226db8
commit d49c8fca79

View File

@ -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