2004-10-09 08:13:40 +02:00
|
|
|
config BR2_PACKAGE_STRACE
|
2004-10-14 22:33:45 +02:00
|
|
|
bool "strace"
|
2017-07-04 18:33:26 +02:00
|
|
|
# needs at least kernel headers 4.0 on nios2
|
|
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0 || !BR2_nios2
|
2019-08-25 06:30:32 +02:00
|
|
|
depends on !BR2_nds32 && !BR2_RISCV_32
|
2004-10-09 08:13:40 +02:00
|
|
|
help
|
2004-10-14 22:33:45 +02:00
|
|
|
A useful diagnostic, instructional, and debugging tool.
|
2008-08-04 21:07:05 +02:00
|
|
|
Allows you to track what system calls a program makes
|
2004-10-14 22:33:45 +02:00
|
|
|
while it is running.
|
2004-10-09 08:13:40 +02:00
|
|
|
|
2018-02-25 19:34:14 +01:00
|
|
|
If you want 'strace -k' to work, make sure to enable the
|
|
|
|
'libunwind' package.
|
|
|
|
|
2017-09-08 11:23:49 +02:00
|
|
|
https://strace.io
|
2017-07-04 18:33:26 +02:00
|
|
|
|
|
|
|
comment "strace needs a toolchain w/ headers >= 4.0 on nios2"
|
|
|
|
depends on BR2_nios2
|
|
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_0
|