Skip to content

Commit

Permalink
tvos: properly set min supported version (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven authored Oct 21, 2024
1 parent 9fc9693 commit 77103e4
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 @@ -220,6 +220,11 @@ endif

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 77103e4

Please sign in to comment.