mirror of
https://github.com/libretro/libretro-prboom.git
synced 2024-11-22 23:49:40 +00:00
ios/tvos: properly set min supported version (#194)
Some checks failed
Crowdin Translation Integration / create_intl_file (push) Has been cancelled
Some checks failed
Crowdin Translation Integration / create_intl_file (push) Has been cancelled
This commit is contained in:
parent
0b43954c75
commit
d25ccfb973
4
Makefile
4
Makefile
@ -120,8 +120,10 @@ endif
|
||||
|
||||
ifeq ($(platform),$(filter $(platform),ios9 ios-arm64))
|
||||
CFLAGS += -miphoneos-version-min=8.0
|
||||
LDFLAGS += -miphoneos-version-min=8.0
|
||||
else
|
||||
CFLAGS += -miphoneos-version-min=5.0
|
||||
LDFLAGS += -miphoneos-version-min=5.0
|
||||
endif
|
||||
|
||||
# tvOS
|
||||
@ -137,6 +139,8 @@ ifeq ($(IOSSDK),)
|
||||
endif
|
||||
CC = clang -arch arm64 -isysroot $(IOSSDK)
|
||||
CXX = clang++ -arch arm64 -isysroot $(IOSSDK)
|
||||
CFLAGS += -mappletvos-version-min=11.0
|
||||
LDFLAGS += -mappletvos-version-min=11.0
|
||||
|
||||
else ifeq ($(platform), theos_ios)
|
||||
# Theos iOS
|
||||
|
Loading…
Reference in New Issue
Block a user