Config.in 844 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. choice
  2. prompt "eglibc version"
  3. depends on TOOLCHAINOPTS && USE_EGLIBC
  4. default EGLIBC_VERSION_2_12
  5. help
  6. Select the version of eglibc you wish to use.
  7. config EGLIBC_VERSION_2_12
  8. bool "eglibc 2.12"
  9. depends !GCC_VERSION_LLVM
  10. config EGLIBC_VERSION_2_13
  11. bool "eglibc 2.13"
  12. depends !GCC_VERSION_LLVM
  13. config EGLIBC_VERSION_2_14
  14. bool "eglibc 2.14"
  15. depends !GCC_VERSION_LLVM
  16. config EGLIBC_VERSION_TRUNK
  17. bool "eglibc trunk"
  18. endchoice
  19. config EGLIBC_REVISION
  20. string
  21. prompt "eglibc revision"
  22. depends on TOOLCHAINOPTS && USE_EGLIBC
  23. default "10495" if EGLIBC_VERSION_2_12
  24. default "13055" if EGLIBC_VERSION_2_13
  25. default "14284" if EGLIBC_VERSION_2_14
  26. default "HEAD" if EGLIBC_VERSION_TRUNK
  27. default ""
  28. menu "eglibc configuration"
  29. depends on TOOLCHAINOPTS && USE_EGLIBC
  30. source toolchain/eglibc/config/Config.in
  31. endmenu