From ffe89731572267ab35c0b404bd34fafd97be5f66 Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Fri, 18 Oct 2024 15:19:50 -0400 Subject: [PATCH] tvos: properly set min supported version --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 9d2caf8..ce0aa04 100644 --- a/Makefile +++ b/Makefile @@ -127,6 +127,9 @@ else ifeq ($(platform), tvos-arm64) PLATFORM_DEFINES += -DIOS CC = clang -arch arm64 -isysroot $(IOSSDK) CXX = clang++ -arch arm64 -isysroot $(IOSSDK) + CC += -mappletvos-version-min=11.0 + CXX += -mappletvos-version-min=11.0 + PLATFORM_DEFINES += -mappletvos-version-min=11.0 # Theos iOS else ifeq ($(platform), theos_ios)