Config.in 750 B

12345678910111213141516171819202122232425262728293031323334
  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_13
  8. bool "eglibc 2.13"
  9. depends !GCC_VERSION_LLVM
  10. config EGLIBC_VERSION_2_14
  11. bool "eglibc 2.14"
  12. depends !GCC_VERSION_LLVM
  13. config EGLIBC_VERSION_2_15
  14. bool "eglibc 2.15"
  15. depends !GCC_VERSION_LLVM
  16. endchoice
  17. config EGLIBC_REVISION
  18. string
  19. prompt "eglibc revision"
  20. depends on TOOLCHAINOPTS && USE_EGLIBC
  21. default "15508" if EGLIBC_VERSION_2_13
  22. default "16488" if EGLIBC_VERSION_2_14
  23. default "18909" if EGLIBC_VERSION_2_15
  24. default ""
  25. menu "eglibc configuration"
  26. depends on TOOLCHAINOPTS && USE_EGLIBC
  27. source toolchain/eglibc/config/Config.in
  28. endmenu