Skip to content

Commit

Permalink
Merge pull request #197 from warmenhoven/warmenhoven/pr/old-ios-tvos
Browse files Browse the repository at this point in the history
ios/tvos: properly set min supported version
  • Loading branch information
negativeExponent authored Oct 18, 2024
2 parents a50c249 + 6676479 commit 9dfa6ab
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile.libretro
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ else ifneq (,$(findstring ios,$(platform)))
endif
CFLAGS += $(MINVERSION)
CXXFLAGS += $(MINVERSION)
LDFLAGS += $(MINVERSION)

# tvOS
else ifeq ($(platform), tvos-arm64)
Expand All @@ -134,6 +135,10 @@ endif

CC = cc -arch arm64 -isysroot $(IOSSDK)
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
MINVERSION = -mappletvos-version-min=11.0
CFLAGS += $(MINVERSION)
CXXFLAGS += $(MINVERSION)
LDFLAGS += $(MINVERSION)

# android arm
else ifneq (,$(findstring android,$(platform)))
Expand Down

0 comments on commit 9dfa6ab

Please sign in to comment.