Config.in 632 B

1234567891011121314151617181920212223242526272829
  1. choice
  2. prompt "eglibc version"
  3. depends on TOOLCHAINOPTS && USE_EGLIBC
  4. default EGLIBC_VERSION_2_13
  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. endchoice
  14. config EGLIBC_REVISION
  15. string
  16. prompt "eglibc revision"
  17. depends on TOOLCHAINOPTS && USE_EGLIBC
  18. default "15508" if EGLIBC_VERSION_2_13
  19. default "16488" if EGLIBC_VERSION_2_14
  20. default ""
  21. menu "eglibc configuration"
  22. depends on TOOLCHAINOPTS && USE_EGLIBC
  23. source toolchain/eglibc/config/Config.in
  24. endmenu