[PATCH] D131703: [test-release] Add option to build BOLT
Rafael Auler via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Aug 15 14:03:56 PDT 2022
This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGe99490512e91: [test-release] Add option to build BOLT (authored by rafauler).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131703/new/
https://reviews.llvm.org/D131703
Files:
llvm/utils/release/test-release.sh
Index: llvm/utils/release/test-release.sh
===================================================================
--- llvm/utils/release/test-release.sh
+++ llvm/utils/release/test-release.sh
@@ -35,6 +35,7 @@
do_libunwind="yes"
do_test_suite="yes"
do_openmp="yes"
+do_bolt="no"
do_lld="yes"
do_lldb="yes"
do_polly="yes"
@@ -163,6 +164,12 @@
-no-openmp )
do_openmp="no"
;;
+ -bolt )
+ do_bolt="yes"
+ ;;
+ -no-bolt )
+ do_bolt="no"
+ ;;
-no-lld )
do_lld="no"
;;
@@ -265,6 +272,9 @@
if [ $do_openmp = "yes" ]; then
projects="$projects openmp"
fi
+if [ $do_bolt = "yes" ]; then
+ projects="$projects bolt"
+fi
if [ $do_lld = "yes" ]; then
projects="$projects lld"
fi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131703.452804.patch
Type: text/x-patch
Size: 806 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220815/9e09f30f/attachment.bin>
More information about the llvm-commits
mailing list