Config.in 818 B

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