Skip to content

Commit

Permalink
Adding GOARM to arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
asergeyev committed Nov 30, 2017
1 parent 9ba8d64 commit 23ebd94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ FLAGS_all = GOROOT=$(GOROOT) GOPATH=$(GOPATH)
FLAGS_linux_amd64 = $(FLAGS_all) GOOS=linux GOARCH=amd64
FLAGS_linux_386 = $(FLAGS_all) GOOS=linux GOARCH=386
FLAGS_linux_arm = $(FLAGS_all) GOOS=linux GOARCH=arm GOARM=5 # ARM5 support for Raspberry Pi
FLAGS_linux_arm64 = $(FLAGS_all) GOOS=linux GOARCH=arm64
FLAGS_linux_arm64 = $(FLAGS_all) GOOS=linux GOARCH=arm64 GOARM=5 # probably should be same for both ARM lines
FLAGS_darwin_amd64 = $(FLAGS_all) GOOS=darwin GOARCH=amd64 CGO_ENABLED=0
FLAGS_darwin_386 = $(FLAGS_all) GOOS=darwin GOARCH=386 CGO_ENABLED=0
FLAGS_freebsd_amd64 = $(FLAGS_all) GOOS=freebsd GOARCH=amd64 CGO_ENABLED=0
Expand Down

0 comments on commit 23ebd94

Please sign in to comment.