Config.in 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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_SNAPSHOT
  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_VERSION_STRING
  27. string
  28. default 0.9.29 if BR2_UCLIBC_VERSION_0_9_29
  29. default 0.9.30.3 if BR2_UCLIBC_VERSION_0_9_30
  30. default 0.9.31 if BR2_UCLIBC_VERSION_0_9_31
  31. default $BR2_USE_UCLIBC_SNAPSHOT if BR2_UCLIBC_VERSION_SNAPSHOT
  32. config BR2_UCLIBC_CONFIG
  33. string "uClibc configuration file to use?"
  34. default "toolchain/uClibc/uClibc-0.9.29.config" if BR2_UCLIBC_VERSION_0_9_29
  35. default "toolchain/uClibc/uClibc-0.9.30.config" if BR2_UCLIBC_VERSION_0_9_30
  36. default "toolchain/uClibc/uClibc-0.9.31.config" if BR2_UCLIBC_VERSION_0_9_31
  37. default "toolchain/uClibc/uClibc-snapshot.config" if BR2_UCLIBC_VERSION_SNAPSHOT
  38. help
  39. Some people may wish to use their own modified uClibc configuration
  40. file and will specify their config file location with this option.
  41. See also docs/README in this package.
  42. If unsure, use the default.
  43. config BR2_PTHREAD_DEBUG
  44. bool "Thread library debugging"
  45. depends on BR2_PTHREADS || BR2_PTHREADS_OLD || BR2_PTHREADS_NATIVE
  46. help
  47. Build the thread library with debugging enabled.
  48. config BR2_UCLIBC_INSTALL_TEST_SUITE
  49. bool "Compile and install uClibc tests"
  50. select BR2_PACKAGE_MAKE
  51. help
  52. Enabling this option will compile and install the uClibc test suite.
  53. This is useful if you want to check if the uClibc library is working
  54. for your architecture and/or help developing uClibc.
  55. The test suite will be installed into /root/uClibc directory. To run
  56. the test suite enter the /root/uClibc/test directory and type
  57. "make UCLIBC_ONLY=1 CC=/bin/true check".
  58. See the /root/uClibc/test/README for additional information.
  59. This is not needed at all for normal builds, so you can safely say no
  60. if you do not plan to dig into your C library.