From 203e5b2349eefd95f36d85d20f89893aeb3b14fc Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Mon, 14 Oct 2024 23:42:51 -0400 Subject: [PATCH] ios/tvos: properly set min supported version --- Makefile.libretro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile.libretro b/Makefile.libretro index ce39b8c..6f412c7 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -247,6 +247,7 @@ else MINVERSION = -miphoneos-version-min=5.0 endif PLATFORM_DEFINES := $(MINVERSION) + LDFLAGS += $(MINVERSION) # tvOS else ifeq ($(platform), tvos-arm64) @@ -261,6 +262,9 @@ else ifeq ($(platform), tvos-arm64) CC_AS = perl ./tools/gas-preprocessor.pl $(CC) CXX = c++ -arch arm64 -isysroot $(IOSSDK) CFLAGS += -Wno-incompatible-function-pointer-types + MINVERSION = -mappletvos-version-min=11.0 + PLATFORM_DEFINES := $(MINVERSION) + LDFLAGS += $(MINVERSION) # Theos else ifeq ($(platform), theos_ios)