mirror of https://github.com/snes9xgit/snes9x.git
libretro: Try c++14 for macOS.
This commit is contained in:
parent
38603e8a0d
commit
49b7d45fd0
|
@ -74,7 +74,7 @@ ifneq (,$(findstring unix,$(platform)))
|
||||||
# OS X
|
# OS X
|
||||||
else ifeq ($(platform), osx)
|
else ifeq ($(platform), osx)
|
||||||
CFLAGS += $(LTO)
|
CFLAGS += $(LTO)
|
||||||
CXXFLAGS += -std=c++17 $(LTO)
|
CXXFLAGS += -std=c++14 $(LTO)
|
||||||
LDFLAGS += $(LTO)
|
LDFLAGS += $(LTO)
|
||||||
TARGET := $(TARGET_NAME)_libretro.dylib
|
TARGET := $(TARGET_NAME)_libretro.dylib
|
||||||
fpic := -fPIC
|
fpic := -fPIC
|
||||||
|
|
Loading…
Reference in New Issue