aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/Config.in
diff options
context:
space:
mode:
authorImre Kaloz <kaloz@openwrt.org>2013-11-22 14:30:40 +0000
committerImre Kaloz <kaloz@openwrt.org>2013-11-22 14:30:40 +0000
commit9fa3c68938c0340bc67dbe3199586190aa540a16 (patch)
tree7e9222abff9a686c83d4b08eb5860f4d27ae760e /toolchain/Config.in
parenteeba5d7b6dc52c84402cfd48bfe3ea0f8b5d9b47 (diff)
downloadupstream-9fa3c68938c0340bc67dbe3199586190aa540a16.tar.gz
upstream-9fa3c68938c0340bc67dbe3199586190aa540a16.tar.bz2
upstream-9fa3c68938c0340bc67dbe3199586190aa540a16.zip
move menuconfig options into separate files
Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 38895
Diffstat (limited to 'toolchain/Config.in')
-rw-r--r--toolchain/Config.in39
1 files changed, 39 insertions, 0 deletions
diff --git a/toolchain/Config.in b/toolchain/Config.in
index 161e46fea8..0d139136e0 100644
--- a/toolchain/Config.in
+++ b/toolchain/Config.in
@@ -1,4 +1,43 @@
+# Copyright (C) 2006-2013 OpenWrt.org
#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
+menuconfig TARGET_OPTIONS
+ bool "Target Options" if DEVEL
+
+ config TARGET_OPTIMIZATION
+ string "Target Optimizations" if TARGET_OPTIONS
+ default DEFAULT_TARGET_OPTIMIZATION
+ help
+ Optimizations to use when building for the target host.
+
+ config SOFT_FLOAT
+ bool "Use software floating point by default" if TARGET_OPTIONS
+ default y
+ depends on (arm || armeb || powerpc || mipsel || mips || mips64el || mips64) && !HAS_FPU
+ help
+ If your target CPU does not have a Floating Point Unit (FPU) or a
+ kernel FPU emulator, but you still wish to support floating point
+ functions, then everything will need to be compiled with soft floating
+ point support (-msoft-float).
+
+ Most people will answer N.
+
+ config USE_MIPS16
+ bool "Build packages with MIPS16 instructions" if TARGET_OPTIONS
+ depends on HAS_MIPS16
+ depends on !GCC_VERSION_4_6
+ default y
+ help
+ If your target CPU does support the MIPS16 instruction set
+ and you want to use it for packages, enable this option.
+ MIPS16 produces smaller binaries thus reducing pressure on
+ caches and TLB.
+
+ Most people will answer N.
+
menuconfig EXTERNAL_TOOLCHAIN
bool