summaryrefslogtreecommitdiff
path: root/utils/release
diff options
context:
space:
mode:
authorPengxuan Zheng <pzheng@codeaurora.org>2017-01-18 01:03:29 +0000
committerPengxuan Zheng <pzheng@codeaurora.org>2017-01-18 01:03:29 +0000
commit162faf4627a2fadefb949e2cd72efcf5660a0f43 (patch)
tree9f18a9ed27eb46539e668b641309bb77722aee70 /utils/release
parent97c35d16c63ec9163561b18b4971095d221c9910 (diff)
[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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@292323 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/release')
-rwxr-xr-xutils/release/test-release.sh14
1 files changed, 13 insertions, 1 deletions
diff --git a/utils/release/test-release.sh b/utils/release/test-release.sh
index 73e31d46d51..642bb670e7e 100755
--- a/utils/release/test-release.sh
+++ b/utils/release/test-release.sh
@@ -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)