mirror of https://github.com/stella-emu/stella.git
libretro: Silence clang warnings for unix.
clang-8: warning: -lpthread: 'linker' input unused [-Wunused-command-line-argument]
This commit is contained in:
parent
92d95db9d8
commit
d2bc950e84
|
@ -62,7 +62,7 @@ endif
|
||||||
|
|
||||||
# Unix
|
# Unix
|
||||||
ifneq (,$(findstring unix,$(platform)))
|
ifneq (,$(findstring unix,$(platform)))
|
||||||
CXXFLAGS += $(LTO) $(PTHREAD_FLAGS)
|
CXXFLAGS += $(LTO)
|
||||||
LDFLAGS += $(LTO) $(PTHREAD_FLAGS)
|
LDFLAGS += $(LTO) $(PTHREAD_FLAGS)
|
||||||
TARGET := $(TARGET_NAME)_libretro.so
|
TARGET := $(TARGET_NAME)_libretro.so
|
||||||
fpic := -fPIC
|
fpic := -fPIC
|
||||||
|
|
Loading…
Reference in New Issue