Config.in.2 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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 locale/gettext/i18n support?"
  28. help
  29. If you are building your own toolchain and you want to
  30. enable locale/gettext/i18n support then enable this option.
  31. If you have an external binary toolchain that has been
  32. built with locale/gettext/i18n support then enable this option.
  33. config BR2_ENABLE_LOCALE_PREGENERATED
  34. bool "Use pregenerated locale data?"
  35. depends on BR2_ENABLE_LOCALE && BR2_TOOLCHAIN_SOURCE
  36. help
  37. Instead of generating the locale data locally you can optionally
  38. download a pregenerated set of locales.
  39. Say N here unless your buildhost lacks locale support and you
  40. desparately want to use internationalization on your target.
  41. config BR2_ENABLE_LOCALE_PURGE
  42. bool "Purge unwanted locales"
  43. depends on BR2_ENABLE_LOCALE
  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. choice
  77. prompt "Thread library implementation"
  78. default BR2_PTHREADS_OLD
  79. help
  80. If you are building your own toolchain then select the type of
  81. libpthreads you want to use.
  82. Not all thread variants work with all versions of uClibc,
  83. the "linuxthreads (stable/old)" may be a working fallback
  84. if you need threading at all.
  85. If you have an external binary toolchain then select the type
  86. of libpthreads it was built with.
  87. config BR2_PTHREADS_NONE
  88. bool "none"
  89. config BR2_PTHREADS
  90. bool "linuxthreads"
  91. config BR2_PTHREADS_OLD
  92. bool "linuxthreads (stable/old)"
  93. config BR2_PTHREADS_NATIVE
  94. bool "Native POSIX Threading (NPTL)"
  95. endchoice
  96. config BR2_GCC_CROSS_CXX
  97. bool
  98. help
  99. If you are building your own toolchain and want to build
  100. a C++ cross-compiler this needs to be enabled.
  101. If you have an external binary toolchain that has a C++ compiler
  102. and you want to use it then you need to enable this option.
  103. config BR2_INSTALL_LIBSTDCPP
  104. bool "Build/install c++ compiler and libstdc++?"
  105. select BR2_LARGEFILE if (!BR2_GCC_SUPPORTS_SYSROOT && BR2_TOOLCHAIN_SOURCE)
  106. select BR2_GCC_CROSS_CXX
  107. help
  108. If you are building your own toolchain and want to build and install
  109. the C++ compiler and library then you need to enable this option.
  110. If you have an external toolchain that has been built with C++
  111. support and you want to use the compiler / library then you need
  112. to select this option.
  113. config BR2_TARGET_OPTIMIZATION
  114. string "Target Optimizations"
  115. default "-Os -pipe"
  116. help
  117. Optimizations to use when building for the target host.
  118. if BR2_TOOLCHAIN_SOURCE
  119. source "toolchain/elf2flt/Config.in"
  120. source "toolchain/mklibs/Config.in"
  121. source "toolchain/sstrip/Config.in"
  122. config BR2_ENABLE_MULTILIB
  123. bool "Enable multilib support?"
  124. help
  125. Build libraries to support different ABIs.
  126. config BR2_VFP_FLOAT
  127. bool "Use ARM Vector Floating Point unit"
  128. depends on !BR2_SOFT_FLOAT
  129. depends on BR2_arm || BR2_armeb
  130. help
  131. Setting this option will enable the "-mfpu=vfp" option.
  132. If your ARM CPU has a Vector Floating Point Unit (VFP)
  133. and the toolchain supports the option, then the
  134. code can be optimized.
  135. Most people will answer N.
  136. config BR2_CROSS_TOOLCHAIN_TARGET_UTILS
  137. bool "Include target utils in cross toolchain"
  138. default y
  139. help
  140. When using buildroot to build a deployable cross toolchain,
  141. it is handy to include certain target apps with that toolchain
  142. as a convenience.
  143. Examples include ldd, gdbserver, and strace.
  144. Answer Y if you want these apps (if built) copied into the
  145. cross toolchain dir under <arch>-linux-uclibc/target_utils/.
  146. endif