libretro: Use -O3 instead of -O2.

This commit is contained in:
orbea 2018-12-17 10:11:40 -08:00
parent 85e0a748e4
commit 1fcfcbb4c3
1 changed files with 2 additions and 2 deletions

View File

@ -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)