From 35d42b47f334a5eec670fe4edd074608c9057415 Mon Sep 17 00:00:00 2001 From: Maksym Pavlenko Date: Mon, 27 Feb 2023 09:14:57 -0800 Subject: [PATCH] Add Linux arm64 arch to install-protobuf script Signed-off-by: Maksym Pavlenko --- script/setup/install-protobuf | 1 + 1 file changed, 1 insertion(+) diff --git a/script/setup/install-protobuf b/script/setup/install-protobuf index 169a62142..3c98e38d2 100755 --- a/script/setup/install-protobuf +++ b/script/setup/install-protobuf @@ -40,6 +40,7 @@ TARGET=${TARGET/windows-386/win32} # Linux TARGET=${TARGET/linux-386/linux-x86_32} TARGET=${TARGET/linux-amd64/linux-x86_64} +TARGET=${TARGET/linux-arm64/linux-aarch_64} TARGET=${TARGET/linux-ppc64le/linux-ppcle_64} if [[ $TARGET != $TARGET_ORIG ]]