From 3a756ed18d614b2c461c18ed644f138d69cfe611 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 4 Jul 2017 09:47:37 +0200 Subject: [PATCH] Set it to -O2 by default --- Makefile.libretro | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile.libretro b/Makefile.libretro index 5c95884..7b281c1 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -254,12 +254,8 @@ endif ifeq ($(DEBUG), 1) CFLAGS += -O0 -g -else ifeq ($(platform),qnx) - CFLAGS += -Os -DNDEBUG -else ifeq ($(platform), emscripten) - CFLAGS += -O2 -DNDEBUG else - CFLAGS += -O3 -DNDEBUG + CFLAGS += -O2 -DNDEBUG endif CORE_DIR := .