libretro: Silence clang warnings for unix.

clang-8: warning: -lpthread: 'linker' input unused [-Wunused-command-line-argument]
This commit is contained in:
orbea 2019-05-08 12:23:33 -07:00 committed by Stephen Anthony
parent 92d95db9d8
commit d2bc950e84
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ endif
# Unix
ifneq (,$(findstring unix,$(platform)))
CXXFLAGS += $(LTO) $(PTHREAD_FLAGS)
CXXFLAGS += $(LTO)
LDFLAGS += $(LTO) $(PTHREAD_FLAGS)
TARGET := $(TARGET_NAME)_libretro.so
fpic := -fPIC