[Makefile] Support building on machines with `uname -m` == "arm64" (#2291)

pull/2302/head
Loic Nageleisen 4 years ago committed by GitHub
parent f37ccaa64f
commit 797dd7c449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -47,6 +47,8 @@ else ifeq ($(UNAME_M),armv7l)
BINARY := $(BINARYARM7)
else ifeq ($(UNAME_M),armv8l)
BINARY := $(BINARYARM8)
else ifeq ($(UNAME_M),arm64)
BINARY := $(BINARYARM8)
else ifeq ($(UNAME_M),aarch64)
BINARY := $(BINARYARM8)
else ifeq ($(UNAME_M),ppc64le)

Loading…
Cancel
Save