Skip to content

Commit

Permalink
feat: add windows-arm64 support in WINDOWS_ARCH_LIST
Browse files Browse the repository at this point in the history
Added support for windows-arm64 architecture in the Makefile as requested in issue #201.
  • Loading branch information
Laotree committed Dec 30, 2024
1 parent 8c17abb commit bd65350
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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))

Expand Down

0 comments on commit bd65350

Please sign in to comment.