From ccd6d321cddd614c65a5d6b791b2c9fb6a11cd8c Mon Sep 17 00:00:00 2001 From: znley Date: Wed, 24 May 2023 09:44:43 +0800 Subject: [PATCH] Feature: add loong64 build (#2762) --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a343aad..104f6c9 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,7 @@ PLATFORM_LIST = \ linux-mips64 \ linux-mips64le \ linux-riscv64 \ + linux-loong64 \ freebsd-386 \ freebsd-amd64 \ freebsd-amd64-v3 \ @@ -89,6 +90,9 @@ linux-mips64le: linux-riscv64: GOARCH=riscv64 GOOS=linux $(GOBUILD) -o $(BINDIR)/$(NAME)-$@ +linux-loong64: + GOARCH=loong64 GOOS=linux $(GOBUILD) -o $(BINDIR)/$(NAME)-$@ + freebsd-386: GOARCH=386 GOOS=freebsd $(GOBUILD) -o $(BINDIR)/$(NAME)-$@