Config.in 2.5 KB

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