From 57e852f275ad51ff9d53fb065d3dbb0d3fa155fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 7 Mar 2023 12:42:48 +0100 Subject: [PATCH] build: fix native build on M1 macs --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index b59fc01..12c9485 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,8 @@ ifeq ($(NATIVE_ARCH),x86_64) TARGETPLATFORM := linux/amd64 else ifeq ($(NATIVE_ARCH),aarch64) TARGETPLATFORM := linux/arm64 +else ifeq ($(NATIVE_ARCH),arm64) + TARGETPLATFORM := linux/arm64 else TARGETPLATFORM := unsupported endif