mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
build: set DESTCPU correctly for 'make binary' on Apple Silicon
PR-URL: https://github.com/nodejs/node/pull/40147 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
This commit is contained in:
committed by
Node.js GitHub Bot
parent
88b497a11b
commit
5607de8c13
4
Makefile
4
Makefile
@@ -827,6 +827,9 @@ else
|
||||
ifeq ($(findstring s390,$(UNAME_M)),s390)
|
||||
DESTCPU ?= s390
|
||||
else
|
||||
ifeq ($(findstring arm64,$(UNAME_M)),arm64)
|
||||
DESTCPU ?= arm64
|
||||
else
|
||||
ifeq ($(findstring arm,$(UNAME_M)),arm)
|
||||
DESTCPU ?= arm
|
||||
else
|
||||
@@ -850,6 +853,7 @@ endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
ifeq ($(DESTCPU),x64)
|
||||
ARCH=x64
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user