2004-10-09 08:13:40 +02:00
|
|
|
config BR2_PACKAGE_LTRACE
|
2004-12-26 08:36:59 +01:00
|
|
|
bool "ltrace"
|
2014-08-14 19:41:44 +02:00
|
|
|
# ltrace normally has mips/mipsel support, but it's currently
|
|
|
|
# broken (error: 'struct ltelf' has no member named
|
|
|
|
# 'relplt_count'). Issue reported upstream at
|
|
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756764.
|
2015-07-03 13:05:24 +02:00
|
|
|
depends on (BR2_i386 || BR2_arm || BR2_mips || BR2_mipsel \
|
2015-03-17 21:26:01 +01:00
|
|
|
|| BR2_powerpc || BR2_sparc || BR2_x86_64 || BR2_xtensa)
|
2014-07-24 23:59:21 +02:00
|
|
|
select BR2_PACKAGE_ELFUTILS
|
2014-08-03 13:36:32 +02:00
|
|
|
depends on BR2_USE_WCHAR # elfutils
|
2014-12-03 22:41:29 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # elfutils
|
2015-08-07 23:37:51 +02:00
|
|
|
depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
|
2004-10-09 08:13:40 +02:00
|
|
|
help
|
2004-12-26 08:36:59 +01:00
|
|
|
Debugging program which runs a specified command until it exits.
|
2008-08-04 21:07:48 +02:00
|
|
|
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.
|
2004-10-09 08:13:40 +02:00
|
|
|
|
2013-09-17 19:39:34 +02:00
|
|
|
http://ltrace.org
|
2014-08-03 14:38:03 +02:00
|
|
|
|
2015-08-07 23:37:51 +02:00
|
|
|
comment "ltrace needs a uclibc or (e)glibc toolchain w/ wchar, dynamic library"
|
2015-03-30 23:07:30 +02:00
|
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
|
2015-08-07 23:37:51 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_USES_UCLIBC && !BR2_TOOLCHAIN_USES_GLIBC
|