diff options
author | Felix Fietkau <nbd@openwrt.org> | 2005-10-23 21:06:51 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2005-10-23 21:06:51 +0000 |
commit | f70edb670a86a0709ff614adf16011ba9f6684ea (patch) | |
tree | 7078983cd632fa349bd542a9015722590df41032 /target/linux/linux-2.4 | |
parent | 484f442adcbd75e875a18134f1588766035f4d20 (diff) | |
download | master-187ad058-f70edb670a86a0709ff614adf16011ba9f6684ea.tar.gz master-187ad058-f70edb670a86a0709ff614adf16011ba9f6684ea.tar.bz2 master-187ad058-f70edb670a86a0709ff614adf16011ba9f6684ea.zip |
add -funit-at-a-time in trunk/ as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2291 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/linux-2.4')
-rw-r--r-- | target/linux/linux-2.4/patches/generic/006-extra_optimization.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/target/linux/linux-2.4/patches/generic/006-extra_optimization.patch b/target/linux/linux-2.4/patches/generic/006-extra_optimization.patch new file mode 100644 index 0000000000..5ae25cbfb7 --- /dev/null +++ b/target/linux/linux-2.4/patches/generic/006-extra_optimization.patch @@ -0,0 +1,24 @@ +--- linux-2.4.30/Makefile 2005-10-23 20:52:56.813948000 +0200 ++++ linux.dev/Makefile 2005-10-23 20:53:12.482927250 +0200 +@@ -89,6 +89,8 @@ + # standard CFLAGS + # + ++check_gcc = $(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi) ++ + CPPFLAGS := -D__KERNEL__ -I$(HPATH) + + CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes -Wno-trigraphs -Os \ +@@ -100,6 +102,12 @@ + endif + AFLAGS := -D__ASSEMBLY__ $(CPPFLAGS) + ++CFLAGS += $(call check_gcc, -funit-at-a-time,) ++ ++ ++ ++ ++ + # + # ROOT_DEV specifies the default root-device when making the image. + # This can be either FLOPPY, CURRENT, /dev/xxxx or empty, in which case |