From bb702f57d892fde0914398d0da0d65065dedc3d0 Mon Sep 17 00:00:00 2001 From: xjasonlyu Date: Mon, 15 Feb 2021 20:18:33 +0800 Subject: [PATCH] Feature: add linux-s390x --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index defb5ff..165917d 100644 --- a/Makefile +++ b/Makefile @@ -27,6 +27,7 @@ UNIX_ARCH_LIST = \ linux-mips64le \ linux-ppc64 \ linux-ppc64le \ + linux-s390x \ openbsd-amd64 \ openbsd-arm64 \ @@ -65,6 +66,9 @@ linux-ppc64: linux-ppc64le: GOARCH=ppc64le GOOS=linux $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@ +linux-s390x: + GOARCH=s390x GOOS=linux $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@ + openbsd-amd64: GOARCH=amd64 GOOS=openbsd $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@