diff --git a/llvm/utils/release/test-release.sh b/llvm/utils/release/test-release.sh --- a/llvm/utils/release/test-release.sh +++ b/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 @@ -189,6 +190,11 @@ shift done +if [ $do_mlir = "no" ] && [ $do_flang = "yes" ]; then + echo "error: cannot build Flang without MLIR" + exit 1 +fi + # Check required arguments. if [ -z "$Release" ]; then echo "error: no release number specified"