We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
uname -m
1 parent c5befe3 commit 30666edCopy full SHA for 30666ed
Makefile
@@ -806,6 +806,9 @@ UNAME_M=$(shell uname -m)
806
ifeq ($(findstring x86_64,$(UNAME_M)),x86_64)
807
DESTCPU ?= x64
808
else
809
+ifeq ($(findstring amd64,$(UNAME_M)),amd64)
810
+DESTCPU ?= x64
811
+else
812
ifeq ($(findstring ppc64,$(UNAME_M)),ppc64)
813
DESTCPU ?= ppc64
814
@@ -865,6 +868,7 @@ endif
865
868
endif
866
869
867
870
871
+endif
872
873
# node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').
874
# pass the proper v8 arch name to $V8_ARCH based on user-specified $DESTCPU.
0 commit comments