add gcc 4.0.3, and make it the default for Aruba
[openwrt/svn-archive/archive.git] / openwrt / toolchain / Config.in
1 #
2
3 source "toolchain/uClibc/Config.in"
4 source "toolchain/binutils/Config.in"
5 source "toolchain/gcc/Config.in"
6
7 if CONFIG_DEVEL
8 comment "Common Toolchain Options"
9 endif
10
11 config BR2_ENABLE_MULTILIB
12 bool
13 default n
14
15 config BR2_LARGEFILE
16 bool
17 depends on !BR2_cris
18 default y
19
20 config BR2_SOFT_FLOAT
21 bool
22 default n
23 depends on BR2_arm || BR2_mips || BR2_powerpc
24
25 config BR2_TARGET_OPTIMIZATION
26 string
27 default "-Os -pipe -march=i486 -funit-at-a-time" if BR2_i386
28 default "-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" if BR2_mipsel || BR2_mips
29 default "-Os -pipe -funit-at-a-time"