Skip to content

Commit 77103e4

Browse files
authored
tvos: properly set min supported version (#231)
1 parent 9fc9693 commit 77103e4

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,11 @@ endif
220220

221221
CC = cc -arch arm64 -isysroot $(IOSSDK)
222222
CXX = c++ -arch arm64 -isysroot $(IOSSDK)
223+
MINVER = -mappletvos-version-min=11.0
224+
LDFLAGS += $(MINVER)
225+
FLAGS += $(MINVER)
226+
CC += $(MINVER)
227+
CXX += $(MINVER)
223228

224229
# QNX
225230
else ifeq ($(platform), qnx)

0 commit comments

Comments
 (0)