Merge pull request #463 from orbea/libretro

libretro: Use -O3 instead of -O2.
This commit is contained in:
bearoso 2018-12-17 12:23:31 -06:00 committed by GitHub
commit f820fa708b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)