From 014f3185bcc7a6343614eca252fcfce08d85d97d Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Sat, 27 May 2023 17:28:39 -0400 Subject: [PATCH] Fix tvos build --- platform/libretro/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/platform/libretro/Makefile b/platform/libretro/Makefile index af5e61b..98d2a72 100644 --- a/platform/libretro/Makefile +++ b/platform/libretro/Makefile @@ -117,6 +117,8 @@ else ifeq ($(platform), tvos-arm64) ifeq ($(IOSSDK),) IOSSDK := $(shell xcodebuild -version -sdk appletvos Path) endif + CC = clang -arch arm64 -isysroot $(IOSSDK) + CXX = clang++ -arch arm64 -isysroot $(IOSSDK) # Theos else ifeq ($(platform), theos_ios)