[llvm] r292323 - [test-release.sh] Add Polly to the list of projects
Pengxuan Zheng via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 17 17:03:29 PST 2017
Author: pzheng
Date: Tue Jan 17 19:03:29 2017
New Revision: 292323
URL: http://llvm.org/viewvc/llvm-project?rev=292323&view=rev
Log:
[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
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=292323&r1=292322&r2=292323&view=diff
==============================================================================
--- llvm/trunk/utils/release/test-release.sh (original)
+++ llvm/trunk/utils/release/test-release.sh Tue Jan 17 19:03:29 2017
@@ -37,6 +37,7 @@ do_libunwind="yes"
do_test_suite="yes"
do_openmp="yes"
do_lldb="no"
+do_polly="no"
BuildDir="`pwd`"
ExtraConfigureFlags=""
ExportBranch=""
@@ -65,6 +66,8 @@ function usage() {
echo " -no-openmp Disable check-out & build libomp"
echo " -lldb Enable check-out & build lldb"
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
@@ -146,6 +149,12 @@ while [ $# -gt 0 ]; do
-no-lldb )
do_lldb="no"
;;
+ -polly )
+ do_polly="yes"
+ ;;
+ -no-polly )
+ do_polly="no"
+ ;;
-help | --help | -h | --h | -\? )
usage
exit 0
@@ -219,6 +228,9 @@ fi
if [ $do_lldb = "yes" ]; then
projects="$projects lldb"
fi
+if [ $do_polly = "yes" ]; then
+ projects="$projects polly"
+fi
# Go to the build directory (may be different from CWD)
BuildDir=$BuildDir/$RC
@@ -285,7 +297,7 @@ function export_sources() {
cfe)
projsrc=llvm.src/tools/clang
;;
- lldb)
+ lldb|polly)
projsrc=llvm.src/tools/$proj
;;
clang-tools-extra)
More information about the llvm-commits
mailing list