Skip to content

Commit

Permalink
Merge pull request #1293 from zyppe/master
Browse files Browse the repository at this point in the history
Add support for loongarch64
  • Loading branch information
tobyxdd authored Jan 13, 2025
2 parents 5520bcc + d86aa0b commit 8c05217
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions hyperbole.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@
"GOARCH": "amd64",
"GOAMD64": "v3",
},
"loong64": {
"GOARCH": "loong64",
},
}


Expand Down
1 change: 1 addition & 0 deletions platforms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ linux/s390x
linux/mipsle
linux/mipsle-sf
linux/riscv64
linux/loong64

# Android
android/386
Expand Down
3 changes: 3 additions & 0 deletions scripts/install_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,9 @@ check_environment_architecture() {
's390x')
ARCHITECTURE='s390x'
;;
'loongarch64')
ARCHITECTURE='loong64'
;;
*)
error "The architecture '$(uname -a)' is not supported."
note "Specify ARCHITECTURE=<architecture> to bypass this check and force this script to run on this $(uname -m)."
Expand Down

0 comments on commit 8c05217

Please sign in to comment.