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