From c1b4382fe8fff98b3811d05b488c6cacfb3cfb5e Mon Sep 17 00:00:00 2001 From: R3pl4c3r <30682790+R3pl4c3r@users.noreply.github.com> Date: Sun, 16 Aug 2020 13:50:56 +0800 Subject: [PATCH] Feature: add Windows ARM32 build (#902) Co-authored-by: MarksonHon <50002150+MarksonHon@users.noreply.github.com> --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fe6839f4..16e1cb4c 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,8 @@ PLATFORM_LIST = \ WINDOWS_ARCH_LIST = \ windows-386 \ - windows-amd64 + windows-amd64 \ + windows-arm32v7 all: linux-amd64 darwin-amd64 windows-amd64 # Most used @@ -82,6 +83,9 @@ windows-386: windows-amd64: GOARCH=amd64 GOOS=windows $(GOBUILD) -o $(BINDIR)/$(NAME)-$@.exe + +windows-arm32v7: + GOARCH=arm GOOS=windows GOARM=7 $(GOBUILD) -o $(BINDIR)/$(NAME)-$@.exe gz_releases=$(addsuffix .gz, $(PLATFORM_LIST)) zip_releases=$(addsuffix .zip, $(WINDOWS_ARCH_LIST))