Config.in 2.9 KB

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