From 41f78b5c630bca2cbc51a99a50b45ecb0ccfb5ba Mon Sep 17 00:00:00 2001 From: Ian Foster Date: Wed, 24 Feb 2021 13:25:44 -0800 Subject: [PATCH] add support for linux and mac arm64 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 19eb7fc..64532c4 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ GIT_HASH := $(shell git rev-parse HEAD) BUILD_FLAGS := -trimpath -ldflags "-w -s -X main.gitDate=$(GIT_DATE) -X main.gitHash=$(GIT_HASH)" -PLATFORMS := linux/amd64 linux/386 linux/arm darwin/amd64 windows/amd64 windows/386 openbsd/amd64 +PLATFORMS := linux/amd64 linux/386 linux/arm linux/arm64 darwin/amd64 darwin/arm64 windows/amd64 windows/386 openbsd/amd64 SOURCES := $(shell find . -maxdepth 1 -type f -name "*.go") ALL_SOURCES = $(shell find . -type f -name '*.go') go.mod docs/*