From ae225ca1fc4d1a91299c6ca257e7f6765c055afb Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 2 Mar 2024 02:58:13 +0900 Subject: [PATCH] Handle armv9l from uname -m --- main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.sh b/main.sh index 603e88b4..6696c79e 100755 --- a/main.sh +++ b/main.sh @@ -407,7 +407,7 @@ case "$(uname -s)" in esac case "$(uname -m)" in aarch64 | arm64) host_arch="aarch64" ;; - xscale | arm | armv6l | armv7l | armv8l) + xscale | arm | armv[6-9]l) # Ignore arm for now, as we need to consider the version and whether hard-float is supported. # https://github.com/rust-lang/rustup/pull/593 # https://github.com/cross-rs/cross/pull/1018