[PATCH] D29539: Add lld to test-release.sh
Dimitry Andric via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 4 04:06:34 PST 2017
dim created this revision.
Herald added a subscriber: wdng.
As Renato suggested, let's add lld to the test-release.sh script.
Building it is enabled by default, but it can be disabled using the
-no-lld option.
We can also disable it by default, like lldb, and add -lld and -no-lld
options instead.
https://reviews.llvm.org/D29539
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_lld="yes"
do_lldb="no"
do_polly="no"
BuildDir="`pwd`"
@@ -64,6 +65,7 @@
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 " -no-lld Disable check-out & build lld"
echo " -lldb Enable check-out & build lldb"
echo " -no-lldb Disable check-out & build lldb (default)"
echo " -polly Enable check-out & build Polly"
@@ -143,6 +145,9 @@
-no-openmp )
do_openmp="no"
;;
+ -no-lld )
+ do_lld="no"
+ ;;
-lldb )
do_lldb="yes"
;;
@@ -225,6 +230,9 @@
if [ $do_openmp = "yes" ]; then
projects="$projects openmp"
fi
+if [ $do_lld = "yes" ]; then
+ projects="$projects lld"
+fi
if [ $do_lldb = "yes" ]; then
projects="$projects lldb"
fi
@@ -297,7 +305,7 @@
cfe)
projsrc=llvm.src/tools/clang
;;
- lldb|polly)
+ lld|lldb|polly)
projsrc=llvm.src/tools/$proj
;;
clang-tools-extra)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29539.87090.patch
Type: text/x-patch
Size: 1448 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170204/68fe8c11/attachment.bin>
More information about the llvm-commits
mailing list