From 1fcfcbb4c3bb3bda0e19db6e11d9fd1ccc75fc27 Mon Sep 17 00:00:00 2001 From: orbea Date: Mon, 17 Dec 2018 10:11:40 -0800 Subject: [PATCH] libretro: Use -O3 instead of -O2. --- libretro/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libretro/Makefile b/libretro/Makefile index 840adcec..9eee4032 100644 --- a/libretro/Makefile +++ b/libretro/Makefile @@ -547,8 +547,8 @@ ifeq ($(DEBUG), 1) CXXFLAGS += -O0 -g -DDEBUG endif else - CFLAGS += -O2 -DNDEBUG - CXXFLAGS += -O2 -DNDEBUG + CFLAGS += -O3 -DNDEBUG + CXXFLAGS += -O3 -DNDEBUG ifneq (,$(findstring msvc,$(platform))) ifeq ($(STATIC_LINKING),1)