efee851c61
ltrace 0.7.3 is the latest release but it is actually broken on ARM since PTRACE_SINGLESTEP emulation has been removed, see: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=425fc47adb5bb69f76285be77a09a3341a30799e It fails with: PTRACE_SINGLESTEP: Input/output error Using master solves that until a new release is made. Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 lines
479 B
Plaintext
14 lines
479 B
Plaintext
config BR2_PACKAGE_LTRACE
|
|
bool "ltrace"
|
|
depends on (BR2_i386 || BR2_arm || BR2_mips || BR2_mipsel \
|
|
|| BR2_powerpc || BR2_sparc || BR2_x86_64)
|
|
select BR2_PACKAGE_LIBELF
|
|
select BR2_PACKAGE_ELFUTILS
|
|
help
|
|
Debugging program which runs a specified command until it exits.
|
|
While the command is executing, ltrace intercepts and records
|
|
the dynamic library calls which are called by the executed
|
|
process and the signals received by that process.
|
|
|
|
http://ltrace.org
|