diff options
author | jdgleaver | 2020-10-15 14:37:46 +0100 |
---|---|---|
committer | jdgleaver | 2020-10-15 14:37:46 +0100 |
commit | 8c24c86a49b23086941814e3ae1d58a2993dac7a (patch) | |
tree | c830b654a33225b1340cd6f8a32fd8bfd926bc3b /Makefile | |
parent | 5f03bb288e72cc19c04060549b486a6311afe9c9 (diff) | |
download | snes9x2005-8c24c86a49b23086941814e3ae1d58a2993dac7a.tar.gz snes9x2005-8c24c86a49b23086941814e3ae1d58a2993dac7a.tar.bz2 snes9x2005-8c24c86a49b23086941814e3ae1d58a2993dac7a.zip |
Backports: Colour operations from Snes9x 1.60 + MIPS optimisations from PocketSNES
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -255,6 +255,7 @@ else ifeq ($(platform), wiiu) else ifeq ($(platform), emscripten) TARGET := $(TARGET_NAME)_libretro_$(platform).bc STATIC_LINKING = 1 + # GCW0 else ifeq ($(platform), gcw0) TARGET := $(TARGET_NAME)_libretro.so @@ -264,9 +265,9 @@ else ifeq ($(platform), gcw0) fpic := -fPIC -nostdlib SHARED := -shared -Wl,--version-script=link.T LIBM := - LOAD_FROM_MEMORY_TEST = 0 - CFLAGS += -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float - + FLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float + FLAGS += -DFAST_LSB_WORD_ACCESS + # (armv7 a7, hard point, neon based) ### # NESC, SNESC, C64 mini else ifeq ($(platform), classic_armv7_a7) |