------------------------------------------------------------------------
r292323 | pzheng | 2017-01-17 17:03:29 -0800 (Tue, 17 Jan 2017) | 9 lines
[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/branches/release_40@292831
91177308-0d34-0410-b5e6-
96231b3b80d8
do_test_suite="yes"
do_openmp="yes"
do_lldb="no"
+do_polly="no"
BuildDir="`pwd`"
ExtraConfigureFlags=""
ExportBranch=""
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
-no-lldb )
do_lldb="no"
;;
+ -polly )
+ do_polly="yes"
+ ;;
+ -no-polly )
+ do_polly="no"
+ ;;
-help | --help | -h | --h | -\? )
usage
exit 0
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
cfe)
projsrc=llvm.src/tools/clang
;;
- lldb)
+ lldb|polly)
projsrc=llvm.src/tools/$proj
;;
clang-tools-extra)