Config.in 868 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. config EGLIBC_VERSION_2_16
  17. bool "eglibc 2.16"
  18. depends !GCC_VERSION_LLVM
  19. endchoice
  20. config EGLIBC_REVISION
  21. string
  22. prompt "eglibc revision"
  23. depends on TOOLCHAINOPTS && USE_EGLIBC
  24. default "15508" if EGLIBC_VERSION_2_13
  25. default "16488" if EGLIBC_VERSION_2_14
  26. default "18909" if EGLIBC_VERSION_2_15
  27. default "19922" if EGLIBC_VERSION_2_16
  28. default ""
  29. menu "eglibc configuration"
  30. depends on TOOLCHAINOPTS && USE_EGLIBC
  31. source toolchain/eglibc/config/Config.in
  32. endmenu