mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 19:03:09 +02:00
d6d5d90469
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2944 3c298f89-4303-0410-b956-a3cf2f4a3e73
30 lines
588 B
Plaintext
30 lines
588 B
Plaintext
#
|
|
|
|
source "toolchain/uClibc/Config.in"
|
|
source "toolchain/binutils/Config.in"
|
|
source "toolchain/gcc/Config.in"
|
|
|
|
if CONFIG_DEVEL
|
|
comment "Common Toolchain Options"
|
|
endif
|
|
|
|
config BR2_ENABLE_MULTILIB
|
|
bool
|
|
default n
|
|
|
|
config BR2_LARGEFILE
|
|
bool
|
|
depends on !BR2_cris
|
|
default y
|
|
|
|
config BR2_SOFT_FLOAT
|
|
bool
|
|
default n
|
|
depends on BR2_arm || BR2_mips || BR2_powerpc
|
|
|
|
config BR2_TARGET_OPTIMIZATION
|
|
string
|
|
default "-Os -pipe -march=i486 -funit-at-a-time" if BR2_i386
|
|
default "-Os -pipe -mips32 -mtune=mips32 -funit-at-a-time" if BR2_mipsel || BR2_mips
|
|
default "-Os -pipe -funit-at-a-time"
|