[PATCH] D17070: [test-release.sh] Add lldb to list of projects (disabled by default)
Daniel Sanders via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 10 04:55:34 PST 2016
dsanders created this revision.
dsanders added a reviewer: hans.
dsanders added a subscriber: llvm-commits.
http://reviews.llvm.org/D17070
Files:
utils/release/test-release.sh
Index: utils/release/test-release.sh
===================================================================
--- utils/release/test-release.sh
+++ utils/release/test-release.sh
@@ -36,6 +36,7 @@
do_libunwind="yes"
do_test_suite="yes"
do_openmp="yes"
+do_lldb="no"
BuildDir="`pwd`"
use_autoconf="no"
ExtraConfigureFlags=""
@@ -64,6 +65,8 @@
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 @@
-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 @@
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 @@
cfe)
projsrc=llvm.src/tools/clang
;;
+ lldb)
+ projsrc=llvm.src/tools/$proj
+ ;;
clang-tools-extra)
projsrc=llvm.src/tools/clang/tools/extra
;;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D17070.47443.patch
Type: text/x-patch
Size: 1507 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160210/ac96661d/attachment.bin>
More information about the llvm-commits
mailing list