(VITA) Enable O3 optimizations
authorFrancisco José García García <frangarcj@gmail.com>
Mon, 26 Sep 2016 22:59:08 +0000 (00:59 +0200)
committerFrancisco José García García <frangarcj@gmail.com>
Mon, 26 Sep 2016 22:59:08 +0000 (00:59 +0200)
Makefile
Makefile.libretro

index 7360770..600a1d3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ ifeq ($(DEBUG), 1)
 CFLAGS += -O0 -ggdb
 else
 ifeq ($(platform), vita)
-CFLAGS += -O1 -DNDEBUG
+CFLAGS += -O3 -DNDEBUG
 else
 CFLAGS += -O2 -DNDEBUG
 endif
index 1aae08e..a0f0c07 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for PCSX ReARMed (libretro)
 
-DEBUG=0
+DEBUG=1
 
 ifeq ($(platform),)
        platform = unix
@@ -120,6 +120,7 @@ else ifeq ($(platform), vita)
        CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -marm
        CFLAGS += -fsingle-precision-constant -mword-relocations -fno-unwind-tables 
        CFLAGS += -fno-asynchronous-unwind-tables -ftree-vectorize -funroll-loops
+       CFLAGS +=  -fno-optimize-sibling-calls
        CFLAGS += -I$(VITASDK)/include -Ifrontend/vita
        CFLAGS += -DNO_SOCKET -DNO_OS -DNO_DYLIB
        ASFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon