[test-release.sh] Add Polly to the list of projects

Reviewers: zinob, hans, grosser

Reviewed By: hans, grosser

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D28712

llvm-svn: 292323
This commit is contained in:
Pengxuan Zheng 2017-01-18 01:03:29 +00:00
parent 73e3aaa61e
commit ac6595c960
1 changed files with 13 additions and 1 deletions

View File

@ -37,6 +37,7 @@ do_libunwind="yes"
do_test_suite="yes" do_test_suite="yes"
do_openmp="yes" do_openmp="yes"
do_lldb="no" do_lldb="no"
do_polly="no"
BuildDir="`pwd`" BuildDir="`pwd`"
ExtraConfigureFlags="" ExtraConfigureFlags=""
ExportBranch="" ExportBranch=""
@ -65,6 +66,8 @@ function usage() {
echo " -no-openmp Disable check-out & build libomp" echo " -no-openmp Disable check-out & build libomp"
echo " -lldb Enable check-out & build lldb" echo " -lldb Enable check-out & build lldb"
echo " -no-lldb Disable check-out & build lldb (default)" echo " -no-lldb Disable check-out & build lldb (default)"
echo " -polly Enable check-out & build Polly"
echo " -no-polly Disable check-out & build Polly (default)"
} }
while [ $# -gt 0 ]; do while [ $# -gt 0 ]; do
@ -146,6 +149,12 @@ while [ $# -gt 0 ]; do
-no-lldb ) -no-lldb )
do_lldb="no" do_lldb="no"
;; ;;
-polly )
do_polly="yes"
;;
-no-polly )
do_polly="no"
;;
-help | --help | -h | --h | -\? ) -help | --help | -h | --h | -\? )
usage usage
exit 0 exit 0
@ -219,6 +228,9 @@ fi
if [ $do_lldb = "yes" ]; then if [ $do_lldb = "yes" ]; then
projects="$projects lldb" projects="$projects lldb"
fi fi
if [ $do_polly = "yes" ]; then
projects="$projects polly"
fi
# Go to the build directory (may be different from CWD) # Go to the build directory (may be different from CWD)
BuildDir=$BuildDir/$RC BuildDir=$BuildDir/$RC
@ -285,7 +297,7 @@ function export_sources() {
cfe) cfe)
projsrc=llvm.src/tools/clang projsrc=llvm.src/tools/clang
;; ;;
lldb) lldb|polly)
projsrc=llvm.src/tools/$proj projsrc=llvm.src/tools/$proj
;; ;;
clang-tools-extra) clang-tools-extra)