diff options
author | neonloop | 2022-02-09 07:15:14 +0000 |
---|---|---|
committer | neonloop | 2022-02-09 07:15:14 +0000 |
commit | ce34e879e348cecd4e21329be5974cc4162fa6c4 (patch) | |
tree | 6bc241b726fc554a31d778642f45a2d1ea2309b4 /Makefile | |
parent | 874c431fdaff24413886416ed3ffa3455681ac01 (diff) | |
download | snes9x2005-ce34e879e348cecd4e21329be5974cc4162fa6c4.tar.gz snes9x2005-ce34e879e348cecd4e21329be5974cc4162fa6c4.tar.bz2 snes9x2005-ce34e879e348cecd4e21329be5974cc4162fa6c4.zip |
Adds experimental ARM dynarecdynarec
Supports ARMv5 and higher, enable with USE_DYNAREC Makefile variable
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -292,6 +292,7 @@ else ifeq ($(platform), trimui) TARGET := $(TARGET_NAME)_libretro.so CC = $(CROSS_COMPILE)gcc AR = $(CROSS_COMPILE)ar + USE_DYNAREC := 1 SHARED := -shared -Wl,--version-script=link.T -Wl,--no-undefined CFLAGS += -fsingle-precision-constant -fno-PIC -flto CFLAGS += -DLSB_FIRST -DFAST_ALIGNED_LSB_WORD_ACCESS -DRIGHTSHIFT_IS_SAR @@ -630,9 +631,11 @@ ifeq ($(platform), psp1) endif OBJECTS := $(SOURCES_C:.c=.o) +OBJECTS := $(OBJECTS:.S=.o) CXXFLAGS += $(FLAGS) CFLAGS += $(FLAGS) +ASFLAGS += $(FLAGS) OBJOUT = -o LINKOUT = -o |