mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-04 18:10:18 +00:00
Added support for the aarch64/arm64 in the scripts
This commit is contained in:
parent
27b17893d8
commit
e5905c9b79
@ -208,6 +208,7 @@ initArch() {
|
||||
printf "$cyan> Using WASMER_ARCH ($WASMER_ARCH).$reset\n"
|
||||
ARCH="$WASMER_ARCH"
|
||||
fi
|
||||
# If you modify this list, please also modify scripts/binary-name.sh
|
||||
case $ARCH in
|
||||
amd64) ARCH="amd64";;
|
||||
x86_64) ARCH="amd64";;
|
||||
|
@ -5,9 +5,11 @@ initArch() {
|
||||
if [ -n "$WASMER_ARCH" ]; then
|
||||
ARCH="$WASMER_ARCH"
|
||||
fi
|
||||
# If you modify this list, please also modify install.sh
|
||||
case $ARCH in
|
||||
amd64) ARCH="amd64";;
|
||||
x86_64) ARCH="amd64";;
|
||||
aarch64) ARCH="arm64";;
|
||||
i386) ARCH="386";;
|
||||
*) echo "Architecture ${ARCH} is not supported by this installation script"; exit 1;;
|
||||
esac
|
||||
|
Loading…
Reference in New Issue
Block a user