1 config BR2_PACKAGE_LTRACE
3 # ltrace normally has mips/mipsel support, but it's currently
4 # broken (error: 'struct ltelf' has no member named
5 # 'relplt_count'). Issue reported upstream at
6 # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756764.
7 depends on (BR2_i386 || BR2_arm || BR2_mips || BR2_mipsel \
8 || BR2_powerpc || BR2_sparc || BR2_x86_64 || BR2_xtensa)
9 select BR2_PACKAGE_ELFUTILS
10 depends on BR2_USE_WCHAR # elfutils
11 depends on !BR2_STATIC_LIBS # elfutils
12 depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
14 Debugging program which runs a specified command until it exits.
15 While the command is executing, ltrace intercepts and records
16 the dynamic library calls which are called by the executed
17 process and the signals received by that process.
21 comment "ltrace needs a uClibc or glibc toolchain w/ wchar, dynamic library"
22 depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
23 || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)