Config.in 411 B

12345678910111213141516171819202122
  1. #
  2. if BR2_TOOLCHAIN_EXTERNAL
  3. choice
  4. prompt "External toolchain C library"
  5. default BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  6. config BR2_TOOLCHAIN_EXTERNAL_UCLIBC
  7. bool "uClibc"
  8. config BR2_TOOLCHAIN_EXTERNAL_GLIBC
  9. bool "glibc"
  10. endchoice
  11. config BR2_TOOLCHAIN_EXTERNAL_STRIP
  12. bool
  13. default y
  14. prompt "Strip shared libraries"
  15. help
  16. Strip shared libraries copied from the external toolchain.
  17. endif