libretro: Try c++14 for macOS.

This commit is contained in:
BearOso 2023-02-15 14:40:33 -06:00
parent 38603e8a0d
commit 49b7d45fd0
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ ifneq (,$(findstring unix,$(platform)))
# OS X
else ifeq ($(platform), osx)
CFLAGS += $(LTO)
CXXFLAGS += -std=c++17 $(LTO)
CXXFLAGS += -std=c++14 $(LTO)
LDFLAGS += $(LTO)
TARGET := $(TARGET_NAME)_libretro.dylib
fpic := -fPIC