Config.in 886 B

12345678910111213141516171819202122232425262728293031
  1. comment "elfutils needs a toolchain w/ wchar, dynamic library, threads"
  2. depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
  3. || !BR2_TOOLCHAIN_HAS_THREADS
  4. config BR2_PACKAGE_ELFUTILS
  5. bool "elfutils"
  6. depends on BR2_USE_WCHAR
  7. depends on !BR2_STATIC_LIBS
  8. depends on BR2_TOOLCHAIN_HAS_THREADS
  9. select BR2_PACKAGE_ZLIB
  10. select BR2_PACKAGE_ARGP_STANDALONE if !BR2_TOOLCHAIN_USES_GLIBC
  11. select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC
  12. help
  13. Libraries/utilities to handle ELF objects (drop in
  14. replacement for libelf).
  15. Note that this option only installs the libraries, and not
  16. the programs.
  17. https://sourceware.org/elfutils/
  18. if BR2_PACKAGE_ELFUTILS
  19. config BR2_PACKAGE_ELFUTILS_PROGS
  20. bool "Install programs"
  21. depends on BR2_TOOLCHAIN_USES_GLIBC
  22. help
  23. This option tells elfutils to not only install the libelf
  24. libraries, but also the elfutils programs.
  25. endif