[llvm] r243633 - [test-release.sh] Add -no-libunwind to disable it on targets that don't support it.
Daniel Sanders
daniel.sanders at imgtec.com
Thu Jul 30 03:14:58 PDT 2015
Author: dsanders
Date: Thu Jul 30 05:14:57 2015
New Revision: 243633
URL: http://llvm.org/viewvc/llvm-project?rev=243633&view=rev
Log:
[test-release.sh] Add -no-libunwind to disable it on targets that don't support it.
Summary:
Mips doesn't implement unw_getcontext() or libunwind::Registers_*::jumpto() yet
so we must disable libunwind for this release.
Reviewers: hans
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D11563
Modified:
llvm/trunk/utils/release/test-release.sh
Modified: llvm/trunk/utils/release/test-release.sh
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/release/test-release.sh?rev=243633&r1=243632&r2=243633&view=diff
==============================================================================
--- llvm/trunk/utils/release/test-release.sh (original)
+++ llvm/trunk/utils/release/test-release.sh Thu Jul 30 05:14:57 2015
@@ -32,6 +32,7 @@ do_asserts="no"
do_compare="yes"
do_rt="yes"
do_libs="yes"
+do_libunwind="yes"
do_test_suite="yes"
do_openmp="no"
BuildDir="`pwd`"
@@ -59,6 +60,7 @@ function usage() {
echo " For example -svn-path trunk or -svn-path branches/release_37"
echo " -no-rt Disable check-out & build Compiler-RT"
echo " -no-libs Disable check-out & build libcxx/libcxxabi/libunwind"
+ echo " -no-libunwind Disable check-out & build libunwind"
echo " -no-test-suite Disable check-out & build test-suite"
echo " -openmp Check out and build the OpenMP run-time (experimental)"
}
@@ -135,6 +137,9 @@ while [ $# -gt 0 ]; do
-no-libs )
do_libs="no"
;;
+ -no-libunwind )
+ do_libunwind="no"
+ ;;
-no-test-suite )
do_test_suite="no"
;;
@@ -191,7 +196,10 @@ if [ $do_rt = "yes" ]; then
projects="$projects compiler-rt"
fi
if [ $do_libs = "yes" ]; then
- projects="$projects libcxx libcxxabi libunwind"
+ projects="$projects libcxx libcxxabi"
+ if [ $do_libunwind = "yes" ]; then
+ projects="$projects libunwind"
+ fi
fi
if [ $do_test_suite = "yes" ]; then
projects="$projects test-suite"
More information about the llvm-commits
mailing list