summaryrefslogtreecommitdiffstats
path: root/llvm/utils
diff options
context:
space:
mode:
authorDaniel Sanders <daniel.sanders@imgtec.com>2016-02-29 11:04:39 +0000
committerDaniel Sanders <daniel.sanders@imgtec.com>2016-02-29 11:04:39 +0000
commit27ba83fd45b05550bf8c2bd9a10a2b23c7b5f67e (patch)
treee3922fee9af412b60abcc8f0599a57f518a70429 /llvm/utils
parentd0257b7bf124d2a3cf289cb41ca394033e295c2b (diff)
downloadbcm5719-llvm-27ba83fd45b05550bf8c2bd9a10a2b23c7b5f67e.tar.gz
bcm5719-llvm-27ba83fd45b05550bf8c2bd9a10a2b23c7b5f67e.zip
[test-release.sh] Add lldb to list of projects (disabled by default)
Reviewers: hans Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D17070 llvm-svn: 262211
Diffstat (limited to 'llvm/utils')
-rwxr-xr-xllvm/utils/release/test-release.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/utils/release/test-release.sh b/llvm/utils/release/test-release.sh
index 8d71bc7dcbe..fed7eeddc3e 100755
--- a/llvm/utils/release/test-release.sh
+++ b/llvm/utils/release/test-release.sh
@@ -36,6 +36,7 @@ do_libs="yes"
do_libunwind="yes"
do_test_suite="yes"
do_openmp="yes"
+do_lldb="no"
BuildDir="`pwd`"
use_autoconf="no"
ExtraConfigureFlags=""
@@ -64,6 +65,8 @@ function usage() {
echo " -no-libunwind Disable check-out & build libunwind"
echo " -no-test-suite Disable check-out & build test-suite"
echo " -no-openmp Disable check-out & build libomp"
+ echo " -lldb Enable check-out & build lldb"
+ echo " -no-lldb Disable check-out & build lldb (default)"
}
while [ $# -gt 0 ]; do
@@ -142,6 +145,12 @@ while [ $# -gt 0 ]; do
-no-openmp )
do_openmp="no"
;;
+ -lldb )
+ do_lldb="yes"
+ ;;
+ -no-lldb )
+ do_lldb="no"
+ ;;
-help | --help | -h | --h | -\? )
usage
exit 0
@@ -214,6 +223,9 @@ esac
if [ $do_openmp = "yes" ]; then
projects="$projects openmp"
fi
+if [ $do_lldb = "yes" ]; then
+ projects="$projects lldb"
+fi
# Go to the build directory (may be different from CWD)
BuildDir=$BuildDir/$RC
@@ -280,6 +292,9 @@ function export_sources() {
cfe)
projsrc=llvm.src/tools/clang
;;
+ lldb)
+ projsrc=llvm.src/tools/$proj
+ ;;
clang-tools-extra)
projsrc=llvm.src/tools/clang/tools/extra
;;
OpenPOWER on IntegriCloud