Makefile.common: change -Ofast to -O2 for compat.

Signed-off-by: minux <minux.ma@gmail.com>
This commit is contained in:
minux 2012-12-22 17:23:19 +08:00 committed by Xiangfu
parent 8900c55dd1
commit d302fe17d6

View File

@ -16,7 +16,7 @@ CFLAGS_DBG = -fno-omit-frame-pointer -ggdb
CFLAGS += $(CFLAGS_DBG)
CFLAGS += -Wall -Wshadow -Wmissing-prototypes -Wmissing-declarations \
-Wno-format-zero-length -Ofast
-Wno-format-zero-length -O2
# ----- Verbosity control -----------------------------------------------------