diff options
author | hizzlekizzle | 2019-10-22 15:19:04 -0500 |
---|---|---|
committer | GitHub | 2019-10-22 15:19:04 -0500 |
commit | a6d35e0165e270e7fc760b9a559a57ca9318ec11 (patch) | |
tree | cc0ddb321febbce3925d404b7340da7704dfe582 /Makefile | |
parent | 24af89596e6484ff5a7a08efecfa8288cfbc02f3 (diff) | |
parent | a60de42f3a7fba8e22d5b2a602a035c68ea4223c (diff) | |
download | picogpsp-a6d35e0165e270e7fc760b9a559a57ca9318ec11.tar.gz picogpsp-a6d35e0165e270e7fc760b9a559a57ca9318ec11.tar.bz2 picogpsp-a6d35e0165e270e7fc760b9a559a57ca9318ec11.zip |
Merge pull request #56 from bmaupin/enable-psp-dynarec
Reenable dynarec for PSP
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -217,9 +217,11 @@ else ifeq ($(platform), psp1) CFLAGS += -DPSP -G0 CFLAGS += -I$(shell psp-config --pspsdk-path)/include CFLAGS += -march=allegrex -mfp32 -mgp32 -mlong32 -mabi=eabi - CFLAGS += -fomit-frame-pointer -ffast-math -fstrict-aliasing + CFLAGS += -fomit-frame-pointer -ffast-math CFLAGS += -falign-functions=32 -falign-loops -falign-labels -falign-jumps STATIC_LINKING = 1 + HAVE_DYNAREC = 1 + CPU_ARCH := mips # Vita else ifeq ($(platform), vita) |