Skip to content

Commit

Permalink
Adds local build support for arm64 (#1397)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonfriesen committed Aug 1, 2023
1 parent 1da645d commit 498db72
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 @@ -37,7 +37,11 @@ endif
ifeq ($(GOARCH),)
GOARCH = amd64
ifneq ($(UNAME_M), x86_64)
GOARCH = 386
ifeq ($(UNAME_M), arm64)
GOARCH = arm64
else
GOARCH = 386
endif
endif
endif

Expand Down

0 comments on commit 498db72

Please sign in to comment.