]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/ltrace/Config.in
lrzsz: install symlinks for XMODEM and YMODEM
[coffee/buildroot.git] / package / ltrace / Config.in
1 config BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
2         bool
3         default y if BR2_arm
4         default y if BR2_i386
5         default y if BR2_mips
6         default y if BR2_mipsel
7         default y if BR2_powerpc
8         default y if BR2_sparc
9         default y if BR2_x86_64
10         default y if BR2_xtensa
11
12 config BR2_PACKAGE_LTRACE
13         bool "ltrace"
14         depends on BR2_USE_WCHAR # elfutils
15         depends on !BR2_STATIC_LIBS # elfutils
16         depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils
17         depends on BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
18         select BR2_PACKAGE_ELFUTILS
19         help
20           Debugging program which runs a specified command until it
21           exits. While the command is executing, ltrace intercepts and
22           records the dynamic library calls which are called by the
23           executed process and the signals received by that process.
24
25           http://ltrace.org
26
27 comment "ltrace needs a uClibc or glibc toolchain w/ wchar, dynamic library"
28         depends on BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
29         depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
30                 || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)