blob: b8c1515069b51a1a49fbc1f132bba961a31e45ac [file] [log] [blame]
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +00001#
2
Peter Korsgaardf85cd122008-06-13 14:28:57 +00003if BR2_TOOLCHAIN_SOURCE
Peter Korsgaard77b4f622008-06-16 07:15:44 +00004source "toolchain/elf2flt/Config.in"
5source "toolchain/mklibs/Config.in"
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +00006source "toolchain/sstrip/Config.in"
7
8config BR2_ENABLE_MULTILIB
9 bool "Enable multilib support?"
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000010 help
Bernhard Reutner-Fischer911a8932007-07-07 09:31:09 +000011 Build libraries to support different ABIs.
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000012
13config BR2_LARGEFILE
14 bool "Enable large file (files > 2 GB) support?"
15 depends on !BR2_cris
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000016 help
17 Enable large file (files > 2 GB) support
18
Bernhard Reutner-Fischera48d8f52007-06-26 16:34:45 +000019config BR2_INET_IPV6
20 bool "Enable IPv6"
Bernhard Reutner-Fischera48d8f52007-06-26 16:34:45 +000021 help
22 Enable IPv6.
23
24config BR2_INET_RPC
25 bool "Enable RPC"
Bernhard Reutner-Fischera48d8f52007-06-26 16:34:45 +000026 help
27 Enable RPC. RPC support is needed for nfs.
28
Ulf Samuelssondd65a3c2007-07-31 22:38:52 +000029config BR2_USE_WCHAR
30 bool "Enable WCHAR support"
Ulf Samuelssondd65a3c2007-07-31 22:38:52 +000031 help
32 Enable WCHAR. WCHAR support is needed for several packages
33
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000034config BR2_SOFT_FLOAT
35 bool "Use software floating point by default"
Ivan Kuten00f34a02007-11-09 09:57:25 +000036 depends on BR2_arm || BR2_armeb || BR2_avr32 || BR2_mips || BR2_mipsel || BR2_powerpc || BR2_nios2
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000037 help
38 If your target CPU does not have a Floating Point Unit (FPU) or a
39 kernel FPU emulator, but you still wish to support floating point
40 functions, then everything will need to be compiled with soft
41 floating point support (-msoft-float).
42
43 Most people will answer N.
44
45#config BR2_SOFT_FLOAT_FP
46# bool "Use softfp"
"Steven J. Hill"02f71aa2007-02-06 18:19:38 +000047
48config BR2_TARGET_OPTIMIZATION
49 string "Target Optimizations"
50 default "-Os -pipe"
51 help
52 Optimizations to use when building for the target host.
53
54config BR2_CROSS_TOOLCHAIN_TARGET_UTILS
55 bool "Include target utils in cross toolchain"
56 default y
57 help
58 When using buildroot to build a deployable cross toolchain,
59 it is handy to include certain target apps with that toolchain
60 as a convenience.
61 Examples include ldd, gdbserver, and strace.
62
63 Answer Y if you want these apps (if built) copied into the
64 cross toolchain dir under <arch>-linux-uclibc/target_utils/.
65
Bernhard Reutner-Fischer51a61c92007-09-22 14:16:25 +000066endif