Config.in 620 B

12345678910111213141516171819202122232425262728
  1. choice
  2. prompt "eglibc version"
  3. depends on TOOLCHAINOPTS && USE_EGLIBC
  4. default EGLIBC_USE_VERSION_2_19
  5. help
  6. Select the version of eglibc you wish to use.
  7. config EGLIBC_USE_VERSION_2_15
  8. bool "eglibc 2.15"
  9. select EGLIBC_VERSION_2_15
  10. config EGLIBC_USE_VERSION_2_19
  11. bool "eglibc 2.19"
  12. select EGLIBC_VERSION_2_19
  13. endchoice
  14. config EGLIBC_REVISION
  15. string
  16. depends on TOOLCHAINOPTS && USE_EGLIBC
  17. default "18909" if EGLIBC_VERSION_2_15
  18. default "25243" if EGLIBC_VERSION_2_19
  19. default ""
  20. menu "eglibc configuration"
  21. depends on TOOLCHAINOPTS && USE_EGLIBC
  22. source toolchain/eglibc/config/Config.in
  23. endmenu