Config.in 2.5 KB

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