From 1ae8d9bbf06f892176f4249dcc47df03582ab310 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Bergstr=C3=B6m?= Date: Thu, 11 Feb 2016 13:57:20 +1100 Subject: [PATCH] build: treat aarch64 as arm64 `Makefile` is now consistent with `configure` regarding how we treat aarch64. PR-URL: https://github.com/nodejs/node/pull/5191 Fixes: https://github.com/nodejs/node/issues/5175 Reviewed-By: Rod Vagg Reviewed-By: Ben Noordhuis --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 31e964d080835c..91af2977cdff5e 100644 --- a/Makefile +++ b/Makefile @@ -272,6 +272,9 @@ else ifeq ($(DESTCPU),arm) ARCH=arm else +ifeq ($(DESTCPU),aarch64) +ARCH=arm64 +else ifeq ($(DESTCPU),ppc64) ARCH=ppc64 else @@ -283,6 +286,7 @@ endif endif endif endif +endif # enforce "x86" over "ia32" as the generally accepted way of referring to 32-bit intel ifeq ($(ARCH),ia32)