Skip to content

Commit

Permalink
tvos: properly set min supported version
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven committed Oct 16, 2024
1 parent 46a8887 commit cf119d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,11 @@ else ifeq ($(platform), tvos-arm64)

CC = cc -arch arm64 -isysroot $(IOSSDK)
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
MINVER = -mappletvos-version-min=11.0
LDFLAGS += $(MINVER)
FLAGS += $(MINVER)
CC += $(MINVER)
CXX += $(MINVER)

# QNX
else ifeq ($(platform), qnx)
Expand Down

0 comments on commit cf119d9

Please sign in to comment.