From 8ccce74acdd9b1ae24fd2933c9ca6f0d7f7d9d41 Mon Sep 17 00:00:00 2001 From: DWwanghao Date: Tue, 24 Jun 2025 20:52:37 +0800 Subject: [PATCH] Add loongarch64 architecture support --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index e9b411dc..e71a54a5 100644 --- a/Makefile +++ b/Makefile @@ -76,6 +76,8 @@ else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv) TARGET_ARCH ?= arm else ifeq ($(LOCAL_ARCH),s390x) TARGET_ARCH ?= s390x +else ifeq ($(LOCAL_ARCH),loongarch64) + TARGET_ARCH ?= loong64 else $(error This system's architecture $(LOCAL_ARCH) isn't supported) endif