1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Add -flang flag to the test-release.sh script

The flag is off by default.
This commit is contained in:
Hans Wennborg 2020-07-17 13:22:17 +02:00
parent 6329f986c9
commit c9528722ad

View File

@ -41,6 +41,7 @@ do_lld="yes"
do_lldb="no"
do_polly="yes"
do_mlir="yes"
do_flang="no"
BuildDir="`pwd`"
ExtraConfigureFlags=""
ExportBranch=""
@ -172,6 +173,9 @@ while [ $# -gt 0 ]; do
-no-mlir )
do_mlir="no"
;;
-flang )
do_flang="yes"
;;
-help | --help | -h | --h | -\? )
usage
exit 0
@ -261,6 +265,9 @@ fi
if [ $do_mlir = "yes" ]; then
projects="$projects mlir"
fi
if [ $do_flang = "yes" ]; then
projects="$projects flang"
fi
# Go to the build directory (may be different from CWD)
BuildDir=$BuildDir/$RC