From 2857987ff65bc35b67698fec116fd5e66718bdf7 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Tue, 28 Jun 2022 11:46:25 +0200 Subject: [PATCH] Increase MACOSX_DEPLOYMENT_TARGET to 11 on ARM macs --- Makefile.system | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.system b/Makefile.system index b1593e8..6dffa40 100644 --- a/Makefile.system +++ b/Makefile.system @@ -384,8 +384,12 @@ endif ifeq ($(OSNAME), Darwin) ifndef MACOSX_DEPLOYMENT_TARGET +ifeq ($(ARCH), arm64) +export MACOSX_DEPLOYMENT_TARGET=11.0 +else export MACOSX_DEPLOYMENT_TARGET=10.8 endif +endif MD5SUM = md5 -r endif -- 2.7.4