mirror of https://github.com/snes9xgit/snes9x.git
libretro: fix makefile compile
This commit is contained in:
parent
671c124e24
commit
614e4ba106
|
@ -56,7 +56,7 @@ ifneq (,$(findstring unix,$(platform)))
|
|||
CC = gcc
|
||||
SHARED := -shared -z defs
|
||||
else
|
||||
SHARED := -shared -Wl,--version-script=link.T
|
||||
SHARED := -shared -Wl,--version-script=link.T -Wl,-z,defs
|
||||
endif
|
||||
ifneq ($(findstring Haiku,$(shell uname -a)),)
|
||||
LIBS :=
|
||||
|
|
|
@ -41,6 +41,7 @@ SOURCES_CXX := $(CORE_DIR)/apu/apu.cpp \
|
|||
$(CORE_DIR)/stream.cpp \
|
||||
$(CORE_DIR)/sa1.cpp \
|
||||
$(CORE_DIR)/sa1cpu.cpp \
|
||||
$(CORE_DIR)/screenshot.cpp\
|
||||
$(CORE_DIR)/sdd1.cpp \
|
||||
$(CORE_DIR)/sdd1emu.cpp \
|
||||
$(CORE_DIR)/seta.cpp \
|
||||
|
@ -52,7 +53,7 @@ SOURCES_CXX := $(CORE_DIR)/apu/apu.cpp \
|
|||
$(CORE_DIR)/spc7110.cpp \
|
||||
$(CORE_DIR)/srtc.cpp \
|
||||
$(CORE_DIR)/tile.cpp \
|
||||
$(CORE_DIR)/sha256.cpp \
|
||||
$(CORE_DIR)/bml.cpp \
|
||||
$(CORE_DIR)/movie.cpp \
|
||||
$(CORE_DIR)/sha256.cpp \
|
||||
$(CORE_DIR)/bml.cpp \
|
||||
$(CORE_DIR)/movie.cpp \
|
||||
$(CORE_DIR)/libretro/libretro.cpp
|
||||
|
|
Loading…
Reference in New Issue