Config.version 468 B

1234567891011121314151617181920212223242526
  1. if USE_GLIBC
  2. config GLIBC_VERSION
  3. string
  4. default "2.19" if EGLIBC_VERSION_2_19
  5. default "2.21" if GLIBC_VERSION_2_21
  6. config EGLIBC_VERSION_2_19
  7. default y if !TOOLCHAINOPTS
  8. bool
  9. config GLIBC_VERSION_2_21
  10. bool
  11. config GLIBC_REVISION
  12. string
  13. default "25243" if EGLIBC_VERSION_2_19
  14. default "4e42b5b8f8" if GLIBC_VERSION_2_21
  15. default ""
  16. endif
  17. menu "eglibc configuration"
  18. depends on !TOOLCHAINOPTS && USE_GLIBC
  19. source toolchain/glibc/config/Config.in
  20. endmenu