From 3037393600cc5e63aafe487186025650a6a4d119 Mon Sep 17 00:00:00 2001 From: Francisco José García García Date: Tue, 27 Sep 2016 00:59:08 +0200 Subject: (VITA) Enable O3 optimizations --- Makefile.libretro | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile.libretro') diff --git a/Makefile.libretro b/Makefile.libretro index 1aae08e..a0f0c07 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -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 -- cgit v1.2.3 From 2f73c14c11377887630c696cefd035a21e976e09 Mon Sep 17 00:00:00 2001 From: Francisco José García García Date: Tue, 27 Sep 2016 01:02:00 +0200 Subject: (Vita) Disable debug --- Makefile.libretro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.libretro') diff --git a/Makefile.libretro b/Makefile.libretro index a0f0c07..a7fa0eb 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -1,6 +1,6 @@ # Makefile for PCSX ReARMed (libretro) -DEBUG=1 +DEBUG=0 ifeq ($(platform),) platform = unix -- cgit v1.2.3