Merge pull request #54 from libretro/revert-52-patch-3

Revert "fix arch,otherwise fails if ARCH is set beforehand"
This commit is contained in:
Twinaphex 2016-08-15 02:58:33 +02:00 committed by GitHub
commit 77440530cd

View File

@ -281,10 +281,10 @@ ifdef SYMBOLS
# O3 optimisation causes issues on ARM
else ifeq ($(ARM), 1)
CFLAGS += -DNDEBUG $(arch) -O2 -fomit-frame-pointer -fstrict-aliasing
CFLAGS += -DNDEBUG $(ARCH) -O2 -fomit-frame-pointer -fstrict-aliasing
else
CFLAGS += -DNDEBUG $(arch) -O3 -fomit-frame-pointer -fstrict-aliasing
CFLAGS += -DNDEBUG $(ARCH) -O3 -fomit-frame-pointer -fstrict-aliasing
endif
# extra options needed *only* for the osd files