Config.in 606 B

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