Update Makefile to Apple M1 info

Expanding host architecture detection.

Change-type: patch
This commit is contained in:
David Gaspar 2021-08-21 14:04:28 -03:00 committed by Lorenzo Alberto Maria Ambrosi
parent dff2df4aab
commit d0114aece7

View File

@ -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