Skip to content

Commit d64a1d1

Browse files
author
git apple-llvm automerger
committed
Merge commit '1dc182b1e6d1' from llvm.org/release/11.x into apple/stable/20200714
2 parents 2afdb07 + 1dc182b commit d64a1d1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

llvm/utils/release/test-release.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ do_lld="yes"
4141
do_lldb="no"
4242
do_polly="yes"
4343
do_mlir="yes"
44+
do_flang="no"
4445
BuildDir="`pwd`"
4546
ExtraConfigureFlags=""
4647
ExportBranch=""
@@ -172,6 +173,9 @@ while [ $# -gt 0 ]; do
172173
-no-mlir )
173174
do_mlir="no"
174175
;;
176+
-flang )
177+
do_flang="yes"
178+
;;
175179
-help | --help | -h | --h | -\? )
176180
usage
177181
exit 0
@@ -261,6 +265,9 @@ fi
261265
if [ $do_mlir = "yes" ]; then
262266
projects="$projects mlir"
263267
fi
268+
if [ $do_flang = "yes" ]; then
269+
projects="$projects flang"
270+
fi
264271

265272
# Go to the build directory (may be different from CWD)
266273
BuildDir=$BuildDir/$RC

0 commit comments

Comments
 (0)