From 79a232b0e90c5e86ade4f09a21c894b0304db840 Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Mon, 21 Oct 2024 13:50:46 -0400 Subject: [PATCH] tvos: properly set min supported version --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 2b65a44..150d520 100644 --- a/Makefile +++ b/Makefile @@ -151,6 +151,9 @@ else ifeq ($(platform), tvos-arm64) endif CC = cc -arch arm64 -isysroot $(IOSSDK) CXX = clang++ -arch arm64 -isysroot $(IOSSDK) + MINVERSION = -mappletvos-version-min=11.0 + SHARED += $(MINVERSION) + CFLAGS += $(MINVERSION) # Theos else ifeq ($(platform), theos_ios)