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