From 61ca45147e49192e10c16e054b5bb7e5f27066e9 Mon Sep 17 00:00:00 2001 From: Eric Warmenhoven Date: Sat, 27 May 2023 14:39:14 -0400 Subject: [PATCH] Fix tvos build --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 063e5f4..c52b50b 100644 --- a/Makefile +++ b/Makefile @@ -155,6 +155,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) # iOS Theos else ifeq ($(platform), theos_ios)