From 3e32c889d954c4d27217f3f37a8e3447be0f00c2 Mon Sep 17 00:00:00 2001 From: Alex Haiut Date: Mon, 21 Jun 2021 15:43:13 +0300 Subject: [PATCH] fixed Apple M1 - darwin.arm64 build (#80) Co-authored-by: Alex Haiut --- cli/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/Makefile b/cli/Makefile index ef97249c7..09684c5ab 100644 --- a/cli/Makefile +++ b/cli/Makefile @@ -26,10 +26,10 @@ build-all: ## build for all supported platforms @mkdir -p bin && echo "SHA256 checksums available for compiled binaries \n\nRun \`shasum -a 256 -c mizu_OS_ARCH.sha256\` to verify\n\n" > bin/README.md @$(MAKE) build GOOS=darwin GOARCH=amd64 @$(MAKE) build GOOS=linux GOARCH=amd64 + @$(MAKE) build GOOS=darwin GOARCH=arm64 @# $(MAKE) GOOS=windows GOARCH=amd64 @# $(MAKE) GOOS=linux GOARCH=386 @# $(MAKE) GOOS=windows GOARCH=386 - @$(MAKE) GOOS=darwin GOARCH=arm64 @# $(MAKE) GOOS=linux GOARCH=arm64 @# $(MAKE) GOOS=windows GOARCH=arm64 @echo "---------"