diff options
author | neonloop | 2022-08-16 23:47:42 +0000 |
---|---|---|
committer | neonloop | 2022-08-16 23:47:42 +0000 |
commit | bf61547f8ce8967c73c0568c05bfaa3d71c07f53 (patch) | |
tree | 1bc122b198865cc3311dee690d9387917fb0a5ee /Makefile | |
parent | 479872a8d30b092671ed49868748e48830bc36da (diff) | |
parent | ce34e879e348cecd4e21329be5974cc4162fa6c4 (diff) | |
download | snes9x2005-bf61547f8ce8967c73c0568c05bfaa3d71c07f53.tar.gz snes9x2005-bf61547f8ce8967c73c0568c05bfaa3d71c07f53.tar.bz2 snes9x2005-bf61547f8ce8967c73c0568c05bfaa3d71c07f53.zip |
Merge branch 'dynarec' into performanceperformance
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -293,6 +293,7 @@ else ifeq ($(platform), trimui) CC = $(CROSS_COMPILE)gcc AR = $(CROSS_COMPILE)ar ARM_ASM := 1 + 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 @@ -631,9 +632,11 @@ ifeq ($(platform), psp1) endif OBJECTS := $(SOURCES_C:.c=.o) +OBJECTS := $(OBJECTS:.S=.o) CXXFLAGS += $(FLAGS) CFLAGS += $(FLAGS) +ASFLAGS += $(FLAGS) OBJOUT = -o LINKOUT = -o |