From 886d01c89fca32e46f5841081eb3288e5b4f313b Mon Sep 17 00:00:00 2001 From: Arielle Albon Date: Wed, 20 Jun 2018 05:51:18 -0700 Subject: Add Arm64 support Based on work of Sun Zhiyi . Closes #5360. PiperOrigin-RevId: 201339882 --- scripts/bootstrap/buildenv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/bootstrap/buildenv.sh b/scripts/bootstrap/buildenv.sh index 0689b95919..0c7e8d443f 100755 --- a/scripts/bootstrap/buildenv.sh +++ b/scripts/bootstrap/buildenv.sh @@ -53,7 +53,7 @@ PLATFORM="$(uname -s | tr 'A-Z' 'a-z')" MACHINE_TYPE="$(uname -m)" MACHINE_IS_64BIT='no' -if [ "${MACHINE_TYPE}" = 'amd64' -o "${MACHINE_TYPE}" = 'x86_64' -o "${MACHINE_TYPE}" = 's390x' ]; then +if [ "${MACHINE_TYPE}" = 'amd64' -o "${MACHINE_TYPE}" = 'x86_64' -o "${MACHINE_TYPE}" = 's390x' -o "${MACHINE_TYPE}" = 'aarch64' ]; then MACHINE_IS_64BIT='yes' fi -- cgit v1.2.3