Skip to content

Commit

Permalink
Platform: Windows ARM64
Browse files Browse the repository at this point in the history
  • Loading branch information
xjasonlyu committed Oct 4, 2021
1 parent 3f5b3c9 commit 377aae1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ UNIX_ARCH_LIST = \
WINDOWS_ARCH_LIST = \
windows-386 \
windows-amd64 \
windows-arm64 \
windows-arm32v7

all: linux-amd64 darwin-amd64 windows-amd64
Expand Down Expand Up @@ -127,6 +128,9 @@ windows-386:
windows-amd64:
GOARCH=amd64 GOOS=windows $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@.exe

windows-arm64:
GOARCH=arm64 GOOS=windows $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@.exe

windows-arm32v7:
GOARCH=arm GOARM=7 GOOS=windows $(GO_BUILD) -o $(BUILD_DIR)/$(BINARY)-$@.exe

Expand Down

0 comments on commit 377aae1

Please sign in to comment.