mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
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 <r@va.gg> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
This commit is contained in:
parent
2848f84332
commit
f167207d0e
4
Makefile
4
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)
|
||||
|
Loading…
Reference in New Issue
Block a user