Config.in 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # Choose uClibc options
  2. #
  3. comment "uClibc Options"
  4. choice
  5. prompt "uClibc C library Version"
  6. default BR2_UCLIBC_VERSION_0_9_31
  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_avr32
  11. depends on BR2_DEPRECATED
  12. bool "uClibc 0.9.28.3"
  13. config BR2_UCLIBC_VERSION_0_9_29
  14. depends on !BR2_avr32
  15. depends on BR2_DEPRECATED
  16. bool "uClibc 0.9.29"
  17. config BR2_UCLIBC_VERSION_0_9_30
  18. depends on BR2_DEPRECATED || BR2_RECENT
  19. bool "uClibc 0.9.30.x"
  20. config BR2_UCLIBC_VERSION_0_9_31
  21. bool "uClibc 0.9.31.x"
  22. config BR2_UCLIBC_VERSION_SNAPSHOT
  23. bool "daily snapshot"
  24. endchoice
  25. config BR2_USE_UCLIBC_SNAPSHOT
  26. string "Date (yyyymmdd) of snapshot or 'snapshot' for latest"
  27. default "snapshot"
  28. depends on BR2_UCLIBC_VERSION_SNAPSHOT
  29. help
  30. Use latest snapshot or one from a specific date?
  31. config BR2_UCLIBC_VERSION_STRING
  32. string
  33. default 0.9.28.3 if BR2_UCLIBC_VERSION_0_9_28_3
  34. default 0.9.29 if BR2_UCLIBC_VERSION_0_9_29
  35. default 0.9.30.3 if BR2_UCLIBC_VERSION_0_9_30
  36. default 0.9.31 if BR2_UCLIBC_VERSION_0_9_31
  37. default $BR2_USE_UCLIBC_SNAPSHOT if BR2_UCLIBC_VERSION_SNAPSHOT
  38. config BR2_UCLIBC_CONFIG
  39. string "uClibc configuration file to use?"
  40. default "toolchain/uClibc/uClibc-0.9.28.config" if BR2_UCLIBC_VERSION_0_9_28_3
  41. default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_0_9_29
  42. default "toolchain/uClibc/uClibc-0.9.30.config" if BR2_UCLIBC_VERSION_0_9_30
  43. default "toolchain/uClibc/uClibc-0.9.31.config" if BR2_UCLIBC_VERSION_0_9_31
  44. default "toolchain/uClibc/uClibc-snapshot.config" if BR2_UCLIBC_VERSION_SNAPSHOT
  45. help
  46. Some people may wish to use their own modified uClibc configuration
  47. file and will specify their config file location with this option.
  48. See also docs/README in this package.
  49. If unsure, use the default.
  50. config BR2_PTHREAD_DEBUG
  51. bool "Thread library debugging"
  52. depends on BR2_PTHREADS || BR2_PTHREADS_OLD || BR2_PTHREADS_NATIVE
  53. help
  54. Build the thread library with debugging enabled.
  55. config BR2_UCLIBC_INSTALL_TEST_SUITE
  56. bool "Compile and install uClibc tests"
  57. select BR2_PACKAGE_MAKE
  58. help
  59. Enabling this option will compile and install the uClibc test suite.
  60. This is useful if you want to check if the uClibc library is working
  61. for your architecture and/or help developing uClibc.
  62. The test suite will be installed into /root/uClibc directory. To run
  63. the test suite enter the /root/uClibc/test directory and type
  64. "make UCLIBC_ONLY=1 CC=/bin/true check".
  65. See the /root/uClibc/test/README for additional information.
  66. This is not needed at all for normal builds, so you can safely say no
  67. if you do not plan to dig into your C library.