2018-05-19 22:55:02 +02:00
|
|
|
config BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
|
|
|
|
bool
|
2018-06-02 11:21:20 +02:00
|
|
|
default y if BR2_aarch64
|
2018-05-19 22:55:02 +02:00
|
|
|
default y if BR2_arm
|
|
|
|
default y if BR2_i386
|
|
|
|
default y if BR2_mips
|
|
|
|
default y if BR2_mipsel
|
|
|
|
default y if BR2_powerpc
|
|
|
|
default y if BR2_sparc
|
|
|
|
default y if BR2_x86_64
|
|
|
|
default y if BR2_xtensa
|
|
|
|
|
2004-10-09 08:13:40 +02:00
|
|
|
config BR2_PACKAGE_LTRACE
|
2004-12-26 08:36:59 +01:00
|
|
|
bool "ltrace"
|
2017-04-22 19:17:58 +02:00
|
|
|
depends on BR2_USE_WCHAR # elfutils
|
|
|
|
depends on !BR2_STATIC_LIBS # elfutils
|
|
|
|
depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
|
2018-05-19 22:55:02 +02:00
|
|
|
depends on BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
|
2014-07-24 23:59:21 +02:00
|
|
|
select BR2_PACKAGE_ELFUTILS
|
2004-10-09 08:13:40 +02:00
|
|
|
help
|
2017-07-31 15:53:49 +02:00
|
|
|
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.
|
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
|
|
|
|
2016-06-08 23:40:54 +02:00
|
|
|
comment "ltrace needs a uClibc or glibc toolchain w/ wchar, dynamic library"
|
2018-05-19 22:55:02 +02:00
|
|
|
depends on BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
|
2015-08-08 20:58:34 +02:00
|
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
|
|
|
|
|| !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)
|