Config.in 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # Choose uClibc options
  2. #
  3. comment "uClibc Options"
  4. choice
  5. prompt "uClibc C library Version"
  6. default BR2_UCLIBC_VERSION_0_9_30_1
  7. help
  8. Select the version of uClibc you wish to use.
  9. config BR2_UCLIBC_VERSION_0_9_28_3
  10. depends on BR2_DEPRECATED
  11. bool "uClibc 0.9.28.3"
  12. depends on BR2_EXT_UCLIBC_VERSION_0_9_28_3
  13. config BR2_UCLIBC_VERSION_0_9_29
  14. depends on BR2_DEPRECATED
  15. bool "uClibc 0.9.29"
  16. depends on BR2_EXT_UCLIBC_VERSION_0_9_29
  17. config BR2_UCLIBC_VERSION_0_9_30
  18. depends on BR2_RECENT || BR2_DEPRECATED
  19. bool "uClibc 0.9.30"
  20. depends on BR2_EXT_UCLIBC_VERSION_0_9_30
  21. config BR2_UCLIBC_VERSION_0_9_30_1
  22. bool "uClibc 0.9.30.1"
  23. depends on BR2_EXT_UCLIBC_VERSION_0_9_30_1
  24. config BR2_UCLIBC_VERSION_SNAPSHOT
  25. bool "daily snapshot"
  26. endchoice
  27. config BR2_USE_UCLIBC_SNAPSHOT
  28. string "Date (yyyymmdd) of snapshot or 'snapshot' for latest"
  29. default "snapshot"
  30. depends on BR2_UCLIBC_VERSION_SNAPSHOT
  31. help
  32. Use latest snapshot or one from a specific date?
  33. config BR2_UCLIBC_VERSION_STRING
  34. string
  35. default 0.9.28.3 if BR2_UCLIBC_VERSION_0_9_28_3
  36. default 0.9.29 if BR2_UCLIBC_VERSION_0_9_29
  37. default 0.9.30 if BR2_UCLIBC_VERSION_0_9_30
  38. default 0.9.30.1 if BR2_UCLIBC_VERSION_0_9_30_1
  39. default $BR2_USE_UCLIBC_SNAPSHOT if BR2_UCLIBC_VERSION_SNAPSHOT
  40. config BR2_UCLIBC_CONFIG
  41. string "uClibc configuration file to use?"
  42. default "toolchain/uClibc/uClibc-0.9.28.config" if BR2_UCLIBC_VERSION_0_9_28_3
  43. default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_0_9_29
  44. default "toolchain/uClibc/uClibc-0.9.30.config" if BR2_UCLIBC_VERSION_0_9_30
  45. default "toolchain/uClibc/uClibc-0.9.30.config" if BR2_UCLIBC_VERSION_0_9_30_1
  46. default "toolchain/uClibc/uClibc-snapshot.config" if BR2_UCLIBC_VERSION_SNAPSHOT
  47. help
  48. Some people may wish to use their own modified uClibc configuration
  49. file and will specify their config file location with this option.
  50. See also docs/README in this package.
  51. If unsure, use the default.
  52. config BR2_PTHREAD_DEBUG
  53. bool "Thread library debugging"
  54. depends on BR2_PTHREADS || BR2_PTHREADS_OLD || BR2_PTHREADS_NATIVE
  55. help
  56. Build the thread library with debugging enabled.
  57. config BR2_UCLIBC_PROGRAM_INVOCATION
  58. bool "Enable 'program invocation name'"
  59. help
  60. Support for the GNU-specific program_invocation_name and
  61. program_invocation_short_name strings. Some GNU packages
  62. (like tar and coreutils) utilize these for extra useful
  63. output, but in general are not required.
  64. config BR2_UCLIBC_INSTALL_TEST_SUITE
  65. bool "Compile and install uClibc tests"
  66. select BR2_PACKAGE_MAKE
  67. help
  68. Enabling this option will compile and install the uClibc test suite.
  69. This is useful if you want to check if the uClibc library is working
  70. for your architecture and/or help developing uClibc.
  71. The test suite will be installed into /root/uClibc directory. To run
  72. the test suite enter the /root/uClibc/test directory and type
  73. "make UCLIBC_ONLY=1 CC=/bin/true check".
  74. See the /root/uClibc/test/README for additional information.
  75. This is not needed at all for normal builds, so you can safely say no
  76. if you do not plan to dig into your C library.