mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 02:33:06 +01:00
Enable Flang by default in the test-release.sh script
I've also brought this up on llvm-dev: https://lists.llvm.org/pipermail/llvm-dev/2021-July/151744.html Differential Revision: https://reviews.llvm.org/D105885
This commit is contained in:
parent
d58a8fbeab
commit
e5843d83d7
@ -41,7 +41,7 @@ do_lld="yes"
|
||||
do_lldb="yes"
|
||||
do_polly="yes"
|
||||
do_mlir="yes"
|
||||
do_flang="no"
|
||||
do_flang="yes"
|
||||
BuildDir="`pwd`"
|
||||
ExtraConfigureFlags=""
|
||||
ExportBranch=""
|
||||
@ -75,6 +75,7 @@ function usage() {
|
||||
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 @@ while [ $# -gt 0 ]; do
|
||||
-no-mlir )
|
||||
do_mlir="no"
|
||||
;;
|
||||
-flang )
|
||||
do_flang="yes"
|
||||
-no-flang )
|
||||
do_flang="no"
|
||||
;;
|
||||
-help | --help | -h | --h | -\? )
|
||||
usage
|
||||
@ -189,6 +190,11 @@ while [ $# -gt 0 ]; do
|
||||
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"
|
||||
|
Loading…
Reference in New Issue
Block a user