Skip to content

Commit 9e19a28

Browse files
wojiushixiaobaimarco-ippolito
authored andcommitted
build: set DESTCPU correctly for 'make binary' on loongarch64
Signed-off-by: 吴小白 <[email protected]> PR-URL: #56271 Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Juan José Arboleda <[email protected]>
1 parent 7e000ec commit 9e19a28

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -933,6 +933,9 @@ else
933933
ifeq ($(findstring riscv64,$(UNAME_M)),riscv64)
934934
DESTCPU ?= riscv64
935935
else
936+
ifeq ($(findstring loongarch64,$(UNAME_M)),loongarch64)
937+
DESTCPU ?= loong64
938+
else
936939
DESTCPU ?= x86
937940
endif
938941
endif
@@ -946,6 +949,7 @@ endif
946949
endif
947950
endif
948951
endif
952+
endif
949953
ifeq ($(DESTCPU),x64)
950954
ARCH=x64
951955
else
@@ -970,6 +974,9 @@ else
970974
ifeq ($(DESTCPU),riscv64)
971975
ARCH=riscv64
972976
else
977+
ifeq ($(DESTCPU),loong64)
978+
ARCH=loong64
979+
else
973980
ARCH=x86
974981
endif
975982
endif
@@ -979,6 +986,7 @@ endif
979986
endif
980987
endif
981988
endif
989+
endif
982990

983991
# node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').
984992
# pass the proper v8 arch name to $V8_ARCH based on user-specified $DESTCPU.

0 commit comments

Comments
 (0)