Config.in 2.2 KB

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