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)-$@