Config.in 932 B

123456789101112131415161718192021222324252627
  1. config BR2_PACKAGE_STRACE
  2. bool "strace"
  3. # needs at least kernel headers 5.0 on xtensa
  4. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0 || !BR2_xtensa
  5. # needs at least kernel headers 5.0 on musl aarch64
  6. depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0 || \
  7. !(BR2_aarch64 || BR2_aarch64_be) || \
  8. !BR2_TOOLCHAIN_USES_MUSL
  9. depends on !BR2_RISCV_32
  10. help
  11. A useful diagnostic, instructional, and debugging tool.
  12. Allows you to track what system calls a program makes
  13. while it is running.
  14. If you want 'strace -k' to work, make sure to enable the
  15. 'libunwind' package.
  16. https://strace.io
  17. comment "strace needs a toolchain w/ headers >= 5.0 on xtensa"
  18. depends on BR2_xtensa
  19. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0
  20. comment "strace needs a musl toolchain w/ headers >= 5.0 on aarch64"
  21. depends on BR2_aarch64 || BR2_aarch64_be
  22. depends on BR2_TOOLCHAIN_USES_MUSL
  23. depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_0