diff --git a/buildscripts/checkdeps.sh b/buildscripts/checkdeps.sh index 4dafc0b5b..63d550fa4 100644 --- a/buildscripts/checkdeps.sh +++ b/buildscripts/checkdeps.sh @@ -75,11 +75,11 @@ check_minimum_version() { assert_is_supported_arch() { case "${ARCH}" in - x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x ) + x86_64 | amd64 | aarch64 | ppc64le | arm* | s390x | loong64 | loongarch64 ) return ;; *) - echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x]" + echo "Arch '${ARCH}' is not supported. Supported Arch: [x86_64, amd64, aarch64, ppc64le, arm*, s390x, loong64, loongarch64]" exit 1 esac }