Skip to content

Commit

Permalink
tvos: properly set min supported version (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
warmenhoven authored Oct 21, 2024
1 parent 0216359 commit cbee833
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 @@ -215,6 +215,11 @@ ifeq ($(IOSSDK),)
endif
CC = clang -arch arm64 -isysroot $(IOSSDK)
CXX = clang++ -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 cbee833

Please sign in to comment.