From d302fe17d651f2e84535108d9b244d228a95e5b6 Mon Sep 17 00:00:00 2001 From: minux Date: Sat, 22 Dec 2012 17:23:19 +0800 Subject: [PATCH] Makefile.common: change -Ofast to -O2 for compat. Signed-off-by: minux --- Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 899abb3..834b815 100644 --- a/Makefile.common +++ b/Makefile.common @@ -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 -----------------------------------------------------