diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-03-26 01:07:12 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-03-26 01:07:12 +0000 |
commit | 335877a2b3220b9b0a901fe7af038c04ca1a2e8b (patch) | |
tree | 01e31e4de2584776d90dd776e505dfa637933e13 /target/linux/rdc | |
parent | 963b90bb5a2124d4afafbea7e55bbda0a8b0e4a2 (diff) | |
download | upstream-335877a2b3220b9b0a901fe7af038c04ca1a2e8b.tar.gz upstream-335877a2b3220b9b0a901fe7af038c04ca1a2e8b.tar.bz2 upstream-335877a2b3220b9b0a901fe7af038c04ca1a2e8b.zip |
global cflags: remove -funit-at-a-time, it is ignored by recent compilers. instead add -fno-caller-saves, which improves compression ratio for generated code with no apparent negative effects on performance
SVN-Revision: 26300
Diffstat (limited to 'target/linux/rdc')
-rw-r--r-- | target/linux/rdc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/rdc/Makefile b/target/linux/rdc/Makefile index 69099b2576..e09642e202 100644 --- a/target/linux/rdc/Makefile +++ b/target/linux/rdc/Makefile @@ -10,7 +10,7 @@ ARCH:=i386 BOARD:=rdc BOARDNAME:=RDC 321x FEATURES:=squashfs jffs2 pci usb pcmcia -CFLAGS:=-Os -pipe -march=i486 -mtune=i486 -funit-at-a-time +CFLAGS:=-Os -pipe -march=i486 -mtune=i486 -fno-caller-saves LINUX_VERSION:=2.6.32.33 |