Config.in.2 2.0 KB

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