We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2afdb07 + 1dc182b commit d64a1d1Copy full SHA for d64a1d1
llvm/utils/release/test-release.sh
@@ -41,6 +41,7 @@ do_lld="yes"
41
do_lldb="no"
42
do_polly="yes"
43
do_mlir="yes"
44
+do_flang="no"
45
BuildDir="`pwd`"
46
ExtraConfigureFlags=""
47
ExportBranch=""
@@ -172,6 +173,9 @@ while [ $# -gt 0 ]; do
172
173
-no-mlir )
174
do_mlir="no"
175
;;
176
+ -flang )
177
+ do_flang="yes"
178
+ ;;
179
-help | --help | -h | --h | -\? )
180
usage
181
exit 0
@@ -261,6 +265,9 @@ fi
261
265
if [ $do_mlir = "yes" ]; then
262
266
projects="$projects mlir"
263
267
fi
268
+if [ $do_flang = "yes" ]; then
269
+ projects="$projects flang"
270
+fi
264
271
272
# Go to the build directory (may be different from CWD)
273
BuildDir=$BuildDir/$RC
0 commit comments