Skip to content

Commit

Permalink
Map aarch64 to arm64.
Browse files Browse the repository at this point in the history
  • Loading branch information
udhos committed May 30, 2019
1 parent c931052 commit 7aec4aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
15 changes: 9 additions & 6 deletions update-golang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,20 @@ fi
arch=$($arch_probe)
case "$arch" in
i*)
arch=386
;;
arch=386
;;
x*)
arch=amd64
;;
;;
aarch64)
arch=armv6l
;;
#arch=armv6l
arch=arm64
;;
armv7l)
# Go project does not provide a binary release for armv71
msg armv7l is not supported, using armv6l
arch=armv6l
;;
;;
esac

show_version() {
Expand Down
2 changes: 1 addition & 1 deletion update-golang.sh.sha256
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7cfe0418b32f0b1f3ca39d2f985841dd58dc151e60786fb6ff28d8c38af47df1 update-golang.sh
f3ba976a54d9227d7bb594a23504594f4289363ad433ad0f437e4d1c944be370 update-golang.sh

0 comments on commit 7aec4aa

Please sign in to comment.