Config.in 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. # Choose uClibc options
  2. #
  3. comment "uClibc Options"
  4. choice
  5. prompt "uClibc C library Version"
  6. default BR2_UCLIBC_VERSION_0_9_29
  7. help
  8. Select the version of uClibc you wish to use.
  9. config BR2_UCLIBC_VERSION_0_9_28_3
  10. depends !BR2_avr32 && BR2_DEPRECATED
  11. bool "uClibc 0.9.28.3"
  12. depends BR2_EXT_UCLIBC_VERSION_0_9_28_3
  13. config BR2_UCLIBC_VERSION_0_9_29
  14. bool "uClibc 0.9.29"
  15. depends BR2_EXT_UCLIBC_VERSION_0_9_29
  16. config BR2_UCLIBC_VERSION_SNAPSHOT
  17. depends !BR2_avr32
  18. bool "daily snapshot"
  19. endchoice
  20. config BR2_USE_UCLIBC_SNAPSHOT
  21. string "Date (yyyymmdd) of snapshot or 'snapshot' for latest"
  22. default "snapshot"
  23. depends on BR2_UCLIBC_VERSION_SNAPSHOT
  24. help
  25. Use latest snapshot or one from a specific date?
  26. config BR2_UCLIBC_CONFIG
  27. string "uClibc configuration file to use?"
  28. default "toolchain/uClibc/uClibc-0.9.28.config" if BR2_UCLIBC_VERSION_0_9_28_3
  29. default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_0_9_29
  30. default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_0_9_30
  31. default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_SNAPSHOT
  32. help
  33. Some people may wish to use their own modified uClibc configuration
  34. file and will specify their config file location with this option.
  35. See also docs/README in this package.
  36. If unsure, use the default.
  37. config BR2_ENABLE_LOCALE
  38. bool "Enable locale/gettext/i18n support?"
  39. default n
  40. help
  41. Enable locale/gettext/i18n support?
  42. choice
  43. prompt "Thread library implementation"
  44. default BR2_PTHREADS_OLD
  45. help
  46. Select the version of libpthreads you want to use.
  47. Not all thread variants work with all versions of uClibc,
  48. the "linuxthreads (stable/old)" may be a working fallback
  49. if you need threading at all.
  50. config BR2_PTHREADS_NONE
  51. bool "none"
  52. config BR2_PTHREADS
  53. bool "linuxthreads"
  54. config BR2_PTHREADS_OLD
  55. bool "linuxthreads (stable/old)"
  56. config BR2_PTHREADS_NATIVE
  57. bool "Native POSIX Threading (NPTL)"
  58. endchoice
  59. config BR2_PTHREAD_DEBUG
  60. bool "Thread library debugging"
  61. depends on BR2_PTHREADS || BR2_PTHREADS_OLD || BR2_PTHREADS_NATIVE
  62. default n
  63. help
  64. Build the thread library with debugging enabled.
  65. config BR2_UCLIBC_PROGRAM_INVOCATION
  66. bool "Enable 'program invocation name'"
  67. default n
  68. help
  69. Support for the GNU-specific program_invocation_name and
  70. program_invocation_short_name strings. Some GNU packages
  71. (like tar and coreutils) utilize these for extra useful
  72. output, but in general are not required.