fix install.sh aarch64

This commit is contained in:
Clément DOUIN 2024-04-20 09:07:30 +02:00
parent 30f00d0867
commit ccddfeb799
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72

View file

@ -23,14 +23,14 @@ case $system in
linux|freebsd) linux|freebsd)
case $machine in case $machine in
x86_64) target=x86_64-linux;; x86_64) target=x86_64-linux;;
arm64|aarch64) target=arm64-linux;; arm64|aarch64) target=aarch64-linux;;
*) die "Unsupported machine $machine for system $system";; *) die "Unsupported machine $machine for system $system";;
esac;; esac;;
darwin) darwin)
case $machine in case $machine in
x86_64) target=x86_64-macos;; x86_64) target=x86_64-macos;;
arm64|aarch64) target=arm64-macos;; arm64|aarch64) target=aarch64-macos;;
*) die "Unsupported machine $machine for system $system";; *) die "Unsupported machine $machine for system $system";;
esac;; esac;;