From 6836599adc76930ef18af68fd76353988452cbc8 Mon Sep 17 00:00:00 2001 From: Shivam Sandbhor Date: Sat, 6 Nov 2021 20:42:43 +0530 Subject: [PATCH] Add make rule for darwin arm64 in cross target (#1455) Signed-off-by: Shivam Sandbhor --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c147927d..33b905ed 100644 --- a/Makefile +++ b/Makefile @@ -53,6 +53,7 @@ cross: GOOS=linux GOARCH=arm64 CGO_ENABLED=0 GO111MODULE=on go build ${BUILD_FLAGS} -installsuffix cgo -o "bin/kompose-linux-arm64" main.go GOOS=windows GOARCH=amd64 CGO_ENABLED=0 GO111MODULE=on go build ${BUILD_FLAGS} -installsuffix cgo -o "bin/kompose-windows-amd64.exe" main.go GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 GO111MODULE=on go build ${BUILD_FLAGS} -installsuffix cgo -o "bin/kompose-darwin-amd64" main.go + GOOS=darwin GOARCH=arm64 CGO_ENABLED=0 GO111MODULE=on go build ${BUILD_FLAGS} -installsuffix cgo -o "bin/kompose-darwin-arm64" main.go .PHONY: clean clean: