We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e000ec commit 9e19a28Copy full SHA for 9e19a28
Makefile
@@ -933,6 +933,9 @@ else
933
ifeq ($(findstring riscv64,$(UNAME_M)),riscv64)
934
DESTCPU ?= riscv64
935
else
936
+ifeq ($(findstring loongarch64,$(UNAME_M)),loongarch64)
937
+DESTCPU ?= loong64
938
+else
939
DESTCPU ?= x86
940
endif
941
@@ -946,6 +949,7 @@ endif
946
949
947
950
948
951
952
+endif
953
ifeq ($(DESTCPU),x64)
954
ARCH=x64
955
@@ -970,6 +974,9 @@ else
970
974
ifeq ($(DESTCPU),riscv64)
971
975
ARCH=riscv64
972
976
977
+ifeq ($(DESTCPU),loong64)
978
+ARCH=loong64
979
973
980
ARCH=x86
981
982
@@ -979,6 +986,7 @@ endif
986
987
988
989
990
983
991
# node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').
984
992
# pass the proper v8 arch name to $V8_ARCH based on user-specified $DESTCPU.
0 commit comments