blob: bc521e00364a222e74fa68699d12e2f24bf26761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
config BR2_PACKAGE_STRACE
bool "strace"
depends on !BR2_nios2
depends on !((BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) \
&& BR2_TOOLCHAIN_USES_UCLIBC)
depends on BR2_LARGEFILE
help
A useful diagnostic, instructional, and debugging tool.
Allows you to track what system calls a program makes
while it is running.
http://sourceforge.net/projects/strace/
comment "strace needs a toolchain w/ largefile"
depends on !BR2_LARGEFILE
comment "strace is not supported on MIPS using a uClibc toolchain"
depends on (BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el) && \
BR2_TOOLCHAIN_USES_UCLIBC
|