From: Johan Bergström Date: Thu, 11 Feb 2016 02:57:20 +0000 (+1100) Subject: build: treat aarch64 as arm64 X-Git-Tag: v4.4.0~19 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8e776fa0636eb6e39ebde2ab0dbf5a3ee8d06e6;p=platform%2Fupstream%2Fnodejs.git 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 --- diff --git a/Makefile b/Makefile index 2e021d5..65a399b 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)