Skip to content

Commit

Permalink
tvos: properly set min supported version (#916)
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven authored Oct 21, 2024
1 parent 03422df commit c5dd945
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 c5dd945

Please sign in to comment.