aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2018-02-13 19:15:13 -0800
committerGitHub <noreply@github.com>2018-02-13 19:15:13 -0800
commitbd2ca31a8d92581582e4150de53eccef99a36b3c (patch)
tree2e761767f09f94a732a0d1a3e5c67baf6a1ac3d9 /Makefile
parent3326520d48c6fd4b65c5b9d19f7eb8a005f6b943 (diff)
Makefile: Go/Protoc don't support arm64 big endian
Protoc: https://github.com/google/protobuf/blob/a711e3d5b4ee1dd7f9d21197dca8432a5819a64e/protoc-artifacts/build-protoc.sh#L82-L83 Go: https://github.com/golang/sys/blob/37707fdb30a5b38865cfb95e5aab41707daec7fd/unix/linux/mkall.go#L43-L79
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3496c0f..aa82008 100644
--- a/Makefile
+++ b/Makefile
@@ -186,7 +186,7 @@ ifeq (x86_64,$(ARCH))
PROTOC_ARCH := x86_64
else ifneq ($(filter i386 i686,$(ARCH)),)
PROTOC_ARCH := x86_32
-else ifneq ($(filter aarch64 aarch64_be armv8b armv8l,$(ARCH)),)
+else ifneq ($(filter aarch64 armv8l,$(ARCH)),)
PROTOC_ARCH := aarch_64
endif
ifdef PROTOC_ARCH