adjust WRT the signum.h generation fix
[buildroot.git] / toolchain / Config.in.2
blobd3a1a19452f7e8bda8c58a8801a2da15fe28a0b5
3 if BR2_TOOLCHAIN_SOURCE
4 source "toolchain/kernel-headers/Config.in"
5 source "toolchain/uClibc/Config.in"
6 source "toolchain/binutils/Config.in"
7 source "toolchain/gcc/Config.in"
8 source "toolchain/ccache/Config.in"
9 source "toolchain/gdb/Config.in"
10 source "toolchain/elf2flt/Config.in"
11 source "toolchain/mklibs/Config.in"
13 comment "Common Toolchain Options"
15 source "toolchain/sstrip/Config.in"
17 config BR2_ENABLE_MULTILIB
18         bool "Enable multilib support?"
19         default n
20         help
21             Build libraries to support different ABIs.
23 config BR2_LARGEFILE
24         bool "Enable large file (files > 2 GB) support?"
25         depends on !BR2_cris
26         default n
27         help
28             Enable large file (files > 2 GB) support
30 config BR2_INET_IPV6
31         bool "Enable IPv6"
32         default n
33         help
34             Enable IPv6.
36 config BR2_INET_RPC
37         bool "Enable RPC"
38         default n
39         help
40             Enable RPC. RPC support is needed for nfs.
42 config BR2_USE_WCHAR
43         bool "Enable WCHAR support"
44         default n
45         help
46           Enable WCHAR. WCHAR support is needed for several packages
48 config BR2_SOFT_FLOAT
49         bool "Use software floating point by default"
50         default n
51         depends on BR2_arm || BR2_armeb || BR2_mips || BR2_mipsel || BR2_powerpc
52         help
53           If your target CPU does not have a Floating Point Unit (FPU) or a
54           kernel FPU emulator, but you still wish to support floating point
55           functions, then everything will need to be compiled with soft
56           floating point support (-msoft-float).
58           Most people will answer N.
60 #config BR2_SOFT_FLOAT_FP
61 #       bool "Use softfp"
62 #       default n
64 config BR2_TARGET_OPTIMIZATION
65         string "Target Optimizations"
66         default "-Os -pipe"
67         help
68           Optimizations to use when building for the target host.
70 config BR2_CROSS_TOOLCHAIN_TARGET_UTILS
71         bool "Include target utils in cross toolchain"
72         default y
73         help
74           When using buildroot to build a deployable cross toolchain,
75           it is handy to include certain target apps with that toolchain
76           as a convenience.
77           Examples include ldd, gdbserver, and strace.
79           Answer Y if you want these apps (if built) copied into the
80           cross toolchain dir under <arch>-linux-uclibc/target_utils/.
82 endif