Update helpers.sh (#137)

Add loong64 support.
This commit is contained in:
YANG Xudong 2024-05-21 00:49:38 +08:00 committed by GitHub
parent 652c592264
commit d1a522ebf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,6 +29,7 @@ get_arch() {
armv6l | armv7l) arch="armv6l" ;; armv6l | armv7l) arch="armv6l" ;;
aarch64 | arm64) arch="arm64" ;; aarch64 | arm64) arch="arm64" ;;
ppc64le) arch="ppc64le" ;; ppc64le) arch="ppc64le" ;;
loongarch64 | loong64) arch="loong64" ;;
*) *)
fail "Arch '${arch_check}' not supported!" fail "Arch '${arch_check}' not supported!"
;; ;;