From 435f9b22896d1e3fcc4ced01fc1b3a66e65ffbb8 Mon Sep 17 00:00:00 2001 From: Laotree Date: Mon, 30 Dec 2024 19:40:20 +0800 Subject: [PATCH] feat: add windows-arm64 support in WINDOWS_ARCH_LIST (#202) Added support for windows-arm64 architecture in the Makefile as requested in issue #201. --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6eac396..2a66df2 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,8 @@ PLATFORM_LIST = \ WINDOWS_ARCH_LIST = \ windows-386 \ - windows-amd64 + windows-amd64 \ + windows-arm64 all: linux-amd64 darwin-amd64 windows-amd64 # Most used @@ -84,6 +85,9 @@ windows-386: windows-amd64: GOARCH=amd64 GOOS=windows $(GOBUILD) -o $(BINDIR)/$(NAME)-$@.exe +windows-arm64: + GOARCH=arm64 GOOS=windows $(GOBUILD) -o $(BINDIR)/$(NAME)-$@.exe + gz_releases=$(addsuffix .gz, $(PLATFORM_LIST)) zip_releases=$(addsuffix .zip, $(WINDOWS_ARCH_LIST))