"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 1 | # |
| 2 | |
Peter Korsgaard | f85cd12 | 2008-06-13 14:28:57 +0000 | [diff] [blame] | 3 | if BR2_TOOLCHAIN_SOURCE |
Peter Korsgaard | 77b4f62 | 2008-06-16 07:15:44 +0000 | [diff] [blame] | 4 | source "toolchain/elf2flt/Config.in" |
| 5 | source "toolchain/mklibs/Config.in" |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 6 | source "toolchain/sstrip/Config.in" |
| 7 | |
| 8 | config BR2_ENABLE_MULTILIB |
| 9 | bool "Enable multilib support?" |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 10 | help |
Bernhard Reutner-Fischer | 911a893 | 2007-07-07 09:31:09 +0000 | [diff] [blame] | 11 | Build libraries to support different ABIs. |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 12 | |
| 13 | config BR2_LARGEFILE |
| 14 | bool "Enable large file (files > 2 GB) support?" |
| 15 | depends on !BR2_cris |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 16 | help |
| 17 | Enable large file (files > 2 GB) support |
| 18 | |
Bernhard Reutner-Fischer | a48d8f5 | 2007-06-26 16:34:45 +0000 | [diff] [blame] | 19 | config BR2_INET_IPV6 |
| 20 | bool "Enable IPv6" |
Bernhard Reutner-Fischer | a48d8f5 | 2007-06-26 16:34:45 +0000 | [diff] [blame] | 21 | help |
| 22 | Enable IPv6. |
| 23 | |
| 24 | config BR2_INET_RPC |
| 25 | bool "Enable RPC" |
Bernhard Reutner-Fischer | a48d8f5 | 2007-06-26 16:34:45 +0000 | [diff] [blame] | 26 | help |
| 27 | Enable RPC. RPC support is needed for nfs. |
| 28 | |
Ulf Samuelsson | dd65a3c | 2007-07-31 22:38:52 +0000 | [diff] [blame] | 29 | config BR2_USE_WCHAR |
| 30 | bool "Enable WCHAR support" |
Ulf Samuelsson | dd65a3c | 2007-07-31 22:38:52 +0000 | [diff] [blame] | 31 | help |
| 32 | Enable WCHAR. WCHAR support is needed for several packages |
| 33 | |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 34 | config BR2_SOFT_FLOAT |
| 35 | bool "Use software floating point by default" |
Ivan Kuten | 00f34a0 | 2007-11-09 09:57:25 +0000 | [diff] [blame] | 36 | depends on BR2_arm || BR2_armeb || BR2_avr32 || BR2_mips || BR2_mipsel || BR2_powerpc || BR2_nios2 |
"Steven J. Hill" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 37 | 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" | 02f71aa | 2007-02-06 18:19:38 +0000 | [diff] [blame] | 47 | |
| 48 | config BR2_TARGET_OPTIMIZATION |
| 49 | string "Target Optimizations" |
| 50 | default "-Os -pipe" |
| 51 | help |
| 52 | Optimizations to use when building for the target host. |
| 53 | |
| 54 | config 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-Fischer | 51a61c9 | 2007-09-22 14:16:25 +0000 | [diff] [blame] | 66 | endif |