libretro: Add -std=c++17 to macOS target.

This commit is contained in:
BearOso 2023-02-15 14:33:51 -06:00
parent cb8eae1486
commit 38603e8a0d
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 += $(LTO)
CXXFLAGS += -std=c++17 $(LTO)
LDFLAGS += $(LTO)
TARGET := $(TARGET_NAME)_libretro.dylib
fpic := -fPIC