Config.in 478 B

123456789101112131415161718192021
  1. choice
  2. prompt "(e)glibc version"
  3. depends on TOOLCHAINOPTS && USE_GLIBC
  4. default EGLIBC_USE_VERSION_2_19
  5. help
  6. Select the version of glibc you wish to use.
  7. config EGLIBC_USE_VERSION_2_19
  8. bool "eglibc 2.19"
  9. select EGLIBC_VERSION_2_19
  10. config GLIBC_USE_VERSION_2_21
  11. bool "glibc 2.21"
  12. select GLIBC_VERSION_2_21
  13. endchoice
  14. menu "eglibc configuration"
  15. depends on TOOLCHAINOPTS && USE_GLIBC && EGLIBC_USE_VERSION_2_19
  16. source toolchain/glibc/config/Config.in
  17. endmenu