From d0114aece7df213e27a84cb0081ba6cedd541bcb Mon Sep 17 00:00:00 2001 From: David Gaspar <37712275+davidgaspardev@users.noreply.github.com> Date: Sat, 21 Aug 2021 14:04:28 -0300 Subject: [PATCH] Update Makefile to Apple M1 info Expanding host architecture detection. Change-type: patch --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ece6d2ec..d7d7b645 100644 --- a/Makefile +++ b/Makefile @@ -66,6 +66,9 @@ else ifeq ($(shell uname -m),x86_64) HOST_ARCH = x64 endif + ifeq ($(shell uname -m),arm64) + HOST_ARCH = aarch64 + endif endif endif