From 817d6c9a2d0899210d848c885bf4e7a655f32c73 Mon Sep 17 00:00:00 2001 From: zyppe <734935956@qq.com> Date: Sat, 4 Jan 2025 22:45:11 +0800 Subject: [PATCH 1/3] Add support for loongarch64 Test on Loongson 3A5000 --- hyperbole.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hyperbole.py b/hyperbole.py index ecc248d..13dcd0a 100755 --- a/hyperbole.py +++ b/hyperbole.py @@ -74,6 +74,9 @@ ARCH_ALIASES = { "GOARCH": "amd64", "GOAMD64": "v3", }, + "loong64": { + "GOARCH": "loong64", + }, } From 537e8144ea5eea314dd6c5393f31f88533822054 Mon Sep 17 00:00:00 2001 From: Haruue Date: Wed, 8 Jan 2025 14:56:15 +0900 Subject: [PATCH 2/3] ci: add linux/loong64 to platforms.txt --- platforms.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/platforms.txt b/platforms.txt index ea0ddf3..9059333 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 From d86aa0b4e21ffb8b8175b29af99d2d8d612ecb06 Mon Sep 17 00:00:00 2001 From: Haruue Date: Wed, 8 Jan 2025 14:57:02 +0900 Subject: [PATCH 3/3] chore(scripts): detect arch for loong64 --- scripts/install_server.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/install_server.sh b/scripts/install_server.sh index 4277ab9..93c06d9 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)."