[PATCH] D105885: Enable Flang by default in the test-release.sh script
Andrzej Warzynski via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 13 04:03:09 PDT 2021
awarzynski created this revision.
Herald added a reviewer: sscalpone.
awarzynski requested review of this revision.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
I've also brought this up on llvm-dev:
https://lists.llvm.org/pipermail/llvm-dev/2021-July/151744.html
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D105885
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
@@ -41,7 +41,7 @@
do_lldb="yes"
do_polly="yes"
do_mlir="yes"
-do_flang="no"
+do_flang="yes"
BuildDir="`pwd`"
ExtraConfigureFlags=""
ExportBranch=""
@@ -75,6 +75,7 @@
echo " -no-lldb Disable check-out & build lldb (default)"
echo " -no-polly Disable check-out & build Polly"
echo " -no-mlir Disable check-out & build MLIR"
+ echo " -no-flang Disable check-out & build Flang"
}
while [ $# -gt 0 ]; do
@@ -173,8 +174,8 @@
-no-mlir )
do_mlir="no"
;;
- -flang )
- do_flang="yes"
+ -no-flang )
+ do_flang="no"
;;
-help | --help | -h | --h | -\? )
usage
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D105885.358226.patch
Type: text/x-patch
Size: 915 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210713/8bf5d67e/attachment.bin>
More information about the llvm-commits
mailing list