Author: stepan Date: Fri Mar 26 12:51:57 2010 New Revision: 112 URL: http://tracker.coreboot.org/trac/filo/changeset/112
Log: add -pipe, this significantly increases build performance on windows.
Signed-off-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/filo/Makefile
Modified: trunk/filo/Makefile ============================================================================== --- trunk/filo/Makefile Fri Mar 26 12:50:53 2010 (r111) +++ trunk/filo/Makefile Fri Mar 26 12:51:57 2010 (r112) @@ -44,8 +44,8 @@ CC = gcc HOSTCC = gcc HOSTCXX = g++ -HOSTCFLAGS := -I$(srck) -I$(objk) -HOSTCXXFLAGS := -I$(srck) -I$(objk) +HOSTCFLAGS := -I$(srck) -I$(objk) -pipe +HOSTCXXFLAGS := -I$(srck) -I$(objk) -pipe
STRIP ?= strip NM ?= nm @@ -93,7 +93,7 @@
GCCINCDIR = $(shell $(CC) -print-search-dirs | head -n 1 | cut -d' ' -f2)include CPPFLAGS = -nostdinc -imacros $(obj)/config.h -Iinclude -I$(GCCINCDIR) -MD -CFLAGS += $(STACKPROTECT) $(INCLUDES) -Wall -Os -fomit-frame-pointer -fno-common -ffreestanding -fno-strict-aliasing -Wshadow +CFLAGS += $(STACKPROTECT) $(INCLUDES) -Wall -Os -fomit-frame-pointer -fno-common -ffreestanding -fno-strict-aliasing -Wshadow -pipe
TARGET = $(obj)/filo.elf