Libretro: Fix crash on some linux systems

This commit is contained in:
retro-wertz 2018-08-19 22:19:06 +08:00
parent 0e33861754
commit 14086d0007
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ endif
ifeq ($(platform), unix) ifeq ($(platform), unix)
TARGET := $(TARGET_NAME)_libretro.so TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC fpic := -fPIC
SHARED := -shared SHARED := -shared -Wl,-no-undefined -Wl,--version-script=link.T
TILED_RENDERING = 1 TILED_RENDERING = 1
else ifeq ($(platform), osx) else ifeq ($(platform), osx)
TARGET := $(TARGET_NAME)_libretro.dylib TARGET := $(TARGET_NAME)_libretro.dylib