Config.in.2 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. #
  2. config BR2_LARGEFILE
  3. bool "Enable large file (files > 2 GB) support?"
  4. depends on !BR2_cris
  5. help
  6. If you are building your own toolchain and you want to
  7. support files larger than 2GB then enable this option.
  8. If you have an external binary toolchain that has been
  9. built with large file support (files > 2GB) then enable
  10. this option.
  11. config BR2_INET_IPV6
  12. bool "Enable IPv6"
  13. help
  14. If you are building your own toolchain and you want to
  15. enable IPV6 support then enable this option.
  16. If you have an external binary toolchain that has been
  17. built with IPV6 support then enable this option.
  18. config BR2_INET_RPC
  19. bool "Enable RPC"
  20. help
  21. Enable RPC. RPC support is needed for nfs.
  22. If you are building your own toolchain and you want to
  23. enable RPC support then enable this option.
  24. If you have an external binary toolchain that has been
  25. built with RPC support then enable this option.
  26. config BR2_ENABLE_LOCALE
  27. bool "Enable toolchain locale/i18n support?"
  28. select BR2_USE_WCHAR
  29. help
  30. If you are building your own toolchain and you want to
  31. enable locale/i18n support then enable this option.
  32. If you have an external binary toolchain that has been
  33. built with locale/i18n support then enable this option.
  34. config BR2_ENABLE_LOCALE_PREGENERATED
  35. bool "Use pregenerated locale data?"
  36. depends on BR2_ENABLE_LOCALE && BR2_TOOLCHAIN_SOURCE
  37. help
  38. Instead of generating the locale data locally you can optionally
  39. download a pregenerated set of locales.
  40. Say N here unless your buildhost lacks locale support and you
  41. desparately want to use internationalization on your target.
  42. config BR2_ENABLE_LOCALE_PURGE
  43. bool "Purge unwanted locales"
  44. help
  45. Explicitly specify what locales to install on target. If N
  46. then all locales supported by packages are installed.
  47. config BR2_ENABLE_LOCALE_WHITELIST
  48. string "Locales to keep"
  49. default "C en_US de fr"
  50. depends on BR2_ENABLE_LOCALE_PURGE
  51. help
  52. Whitespace seperated list of locales to allow on target.
  53. Locales not listed here will be removed from the target.
  54. See 'locale -a' on your host for a list of locales available
  55. on your build host, or have a look in /usr/share/locale in
  56. the target file system for available locales.
  57. Notice that listing a locale here doesn't guarantee that it
  58. will be available on the target - That purely depends on the
  59. support for that locale in the selected packages.
  60. config BR2_USE_WCHAR
  61. bool "Enable WCHAR support"
  62. help
  63. If you are building your own toolchain and you want to
  64. enable WCHAR support then enable this option.
  65. If you have an external binary toolchain that has been built
  66. with WCHAR support then enable this option.
  67. config BR2_SOFT_FLOAT
  68. bool "Use software floating point by default"
  69. depends on BR2_arm || BR2_armeb || BR2_avr32 || BR2_mips || BR2_mipsel || BR2_powerpc || BR2_nios2
  70. help
  71. If your target CPU does not have a Floating Point Unit (FPU) or a
  72. kernel FPU emulator, but you still wish to support floating point
  73. functions, then everything will need to be compiled with soft
  74. floating point support (-msoft-float).
  75. Most people will answer N.
  76. config BR2_USE_SSP
  77. bool "Enable stack protection support"
  78. help
  79. Enable stack smashing protection support using GCCs
  80. -fstack-protector[-all] option.
  81. See http://www.linuxfromscratch.org/hints/downloads/files/ssp.txt
  82. for details.
  83. choice
  84. prompt "Thread library implementation"
  85. default BR2_PTHREADS_OLD
  86. help
  87. If you are building your own toolchain then select the type of
  88. libpthreads you want to use.
  89. Not all thread variants work with all versions of uClibc,
  90. the "linuxthreads (stable/old)" may be a working fallback
  91. if you need threading at all.
  92. If you have an external binary toolchain then select the type
  93. of libpthreads it was built with.
  94. config BR2_PTHREADS_NONE
  95. bool "none"
  96. config BR2_PTHREADS
  97. bool "linuxthreads"
  98. config BR2_PTHREADS_OLD
  99. bool "linuxthreads (stable/old)"
  100. config BR2_PTHREADS_NATIVE
  101. bool "Native POSIX Threading (NPTL)"
  102. endchoice
  103. config BR2_PROGRAM_INVOCATION
  104. bool "Enable 'program invocation name'"
  105. help
  106. Support for the GNU-specific program_invocation_name and
  107. program_invocation_short_name strings. Some GNU packages
  108. (like tar and coreutils) utilize these for extra useful
  109. output, but in general are not required.
  110. If you have an external binary toolchain that has been built
  111. with program invocation support then enable this option.
  112. config BR2_GCC_CROSS_CXX
  113. bool
  114. help
  115. If you are building your own toolchain and want to build
  116. a C++ cross-compiler this needs to be enabled.
  117. If you have an external binary toolchain that has a C++ compiler
  118. and you want to use it then you need to enable this option.
  119. config BR2_INSTALL_LIBSTDCPP
  120. bool "Build/install c++ compiler and libstdc++?"
  121. select BR2_LARGEFILE if (!BR2_GCC_SUPPORTS_SYSROOT && BR2_TOOLCHAIN_SOURCE)
  122. select BR2_GCC_CROSS_CXX
  123. help
  124. If you are building your own toolchain and want to build and install
  125. the C++ compiler and library then you need to enable this option.
  126. If you have an external toolchain that has been built with C++
  127. support and you want to use the compiler / library then you need
  128. to select this option.
  129. config BR2_TARGET_OPTIMIZATION
  130. string "Target Optimizations"
  131. default "-Os -pipe"
  132. help
  133. Optimizations to use when building for the target host.
  134. if BR2_TOOLCHAIN_SOURCE
  135. source "toolchain/elf2flt/Config.in"
  136. source "toolchain/mklibs/Config.in"
  137. source "toolchain/sstrip/Config.in"
  138. config BR2_ENABLE_MULTILIB
  139. bool "Enable multilib support?"
  140. help
  141. Build libraries to support different ABIs.
  142. config BR2_VFP_FLOAT
  143. bool "Use ARM Vector Floating Point unit"
  144. depends on !BR2_SOFT_FLOAT
  145. depends on BR2_arm || BR2_armeb
  146. help
  147. Setting this option will enable the "-mfpu=vfp" option.
  148. If your ARM CPU has a Vector Floating Point Unit (VFP)
  149. and the toolchain supports the option, then the
  150. code can be optimized.
  151. Most people will answer N.
  152. config BR2_CROSS_TOOLCHAIN_TARGET_UTILS
  153. bool "Include target utils in cross toolchain"
  154. default y
  155. help
  156. When using buildroot to build a deployable cross toolchain,
  157. it is handy to include certain target apps with that toolchain
  158. as a convenience.
  159. Examples include ldd, gdbserver, and strace.
  160. Answer Y if you want these apps (if built) copied into the
  161. cross toolchain dir under <arch>-linux-uclibc/target_utils/.
  162. endif