From 07853b44f8efba5704f14d6b7b7ed4901e47132d Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 2 Jul 2017 06:21:27 +0200 Subject: [PATCH] Change -O3 to -O2 --- Makefile.libretro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.libretro b/Makefile.libretro index 0ec47b3..ae3d7ec 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -328,7 +328,7 @@ endif ifeq ($(DEBUG), 1) CFLAGS += -O0 -g -DDEBUG else - CFLAGS += -O3 -DNDEBUG + CFLAGS += -O2 -DNDEBUG endif ifeq ($(EXTERNAL_ZLIB), 1)