summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Guillen Fandos2021-03-25 23:01:20 +0100
committerDavid Guillen Fandos2021-03-26 23:13:26 +0100
commit7ea6c5e247a742af6f7acfbf215c23264410451f (patch)
tree125364f2f35fc15e103e3b20a1229062730cfe00 /Makefile
parenta494a3f00ee3bd35ee9ab76f8cd4f164da080113 (diff)
downloadpicogpsp-7ea6c5e247a742af6f7acfbf215c23264410451f.tar.gz
picogpsp-7ea6c5e247a742af6f7acfbf215c23264410451f.tar.bz2
picogpsp-7ea6c5e247a742af6f7acfbf215c23264410451f.zip
Move OAM RAM to stubs also
Makes accesses more efficient for MIPS. Make accesses also fast for palette reads.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a5f2649..dfc7c37 100644
--- a/Makefile
+++ b/Makefile
@@ -362,6 +362,15 @@ else ifneq (,$(findstring armv,$(platform)))
endif
LDFLAGS := -Wl,--no-undefined
+# MIPS
+else ifeq ($(platform), mips32)
+ TARGET := $(TARGET_NAME)_libretro.so
+ SHARED := -shared -nostdlib -Wl,--version-script=link.T
+ fpic := -fPIC -DPIC
+ CFLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float
+ HAVE_DYNAREC := 1
+ CPU_ARCH := mips
+
# emscripten
else ifeq ($(platform), emscripten)
TARGET := $(TARGET_NAME)_libretro_$(platform).bc