Skip to content

Commit 2857987

Browse files
authored
Increase MACOSX_DEPLOYMENT_TARGET to 11 on ARM macs
1 parent 9283c7c commit 2857987

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile.system

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -384,8 +384,12 @@ endif
384384

385385
ifeq ($(OSNAME), Darwin)
386386
ifndef MACOSX_DEPLOYMENT_TARGET
387+
ifeq ($(ARCH), arm64)
388+
export MACOSX_DEPLOYMENT_TARGET=11.0
389+
else
387390
export MACOSX_DEPLOYMENT_TARGET=10.8
388391
endif
392+
endif
389393
MD5SUM = md5 -r
390394
endif
391395

0 commit comments

Comments
 (0)