From e5009398d5e5c40bba2b1c12d856d77e7172c8bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AF=BB=E8=A7=85?= <43723838+xunmi-git@users.noreply.github.com> Date: Tue, 12 Nov 2024 20:29:06 +0800 Subject: [PATCH] Feature: add `Loong64` arch (#427) --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index c306e5a3..970ceb39 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,7 @@ UNIX_ARCH_LIST = \ linux-ppc64 \ linux-ppc64le \ linux-s390x \ + linux-loong64 \ openbsd-amd64 \ openbsd-amd64-v3 \ openbsd-arm64 @@ -129,6 +130,9 @@ linux-ppc64le: linux-s390x: GOARCH=s390x GOOS=linux $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@ +linux-loong64: + GOARCH=loong64 GOOS=linux $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@ + openbsd-amd64: GOARCH=amd64 GOOS=openbsd $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@