From 3051213b1234618c37b88a3febd2d7ccf1ee4aee Mon Sep 17 00:00:00 2001 From: CareyWong Date: Mon, 28 Sep 2020 21:27:34 +0800 Subject: [PATCH] Update: arm64 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e81d90a..5fdf914 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ all: @echo ${BINARY_WINDOWS} @CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o ${BINARY_WINDOWS} ${GOFILES} @echo ${BINARY_ARRCH64} - @CGO_ENABLED=0 GOOS=linux GOARCH=aarch64 go build -o ${BINARY_ARRCH64} ${GOFILES} + @CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o ${BINARY_ARRCH64} ${GOFILES} linux: @echo ${BINARY_LINUX} @@ -36,7 +36,7 @@ windows: aarch64: @echo ${BINARY_ARRCH64} - @CGO_ENABLED=0 GOOS=linux GOARCH=aarch64 go build -o ${BINARY_ARRCH64} ${GOFILES} + @CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -o ${BINARY_ARRCH64} ${GOFILES} install: @go mod tidy