diff --git a/hyperbole.py b/hyperbole.py index ecc248dbf3..13dcd0a738 100755 --- a/hyperbole.py +++ b/hyperbole.py @@ -74,6 +74,9 @@ "GOARCH": "amd64", "GOAMD64": "v3", }, + "loong64": { + "GOARCH": "loong64", + }, } diff --git a/platforms.txt b/platforms.txt index ea0ddf3aba..90593336c1 100644 --- a/platforms.txt +++ b/platforms.txt @@ -22,6 +22,7 @@ linux/s390x linux/mipsle linux/mipsle-sf linux/riscv64 +linux/loong64 # Android android/386 diff --git a/scripts/install_server.sh b/scripts/install_server.sh index 4277ab946b..93c06d977c 100644 --- a/scripts/install_server.sh +++ b/scripts/install_server.sh @@ -436,6 +436,9 @@ check_environment_architecture() { 's390x') ARCHITECTURE='s390x' ;; + 'loongarch64') + ARCHITECTURE='loong64' + ;; *) error "The architecture '$(uname -a)' is not supported." note "Specify ARCHITECTURE= to bypass this check and force this script to run on this $(uname -m)."