buildrootschalter/package/ltrace/Config.in
Gregory CLEMENT e50431b208 ltrace: Removes the libelf dependency
The libelf is currently provided by 2 packages libelf and
elfutils. The first package provides an old version of the libelf
which is no more compatible with a recent version of ltrace. This
patch removes the dependency on the libelf package and only keep the
elfuils package which provides the accurate version of libelf for
ltrace.

It will also allow to remove the libelf package and to avoid conflicts
with two packages providing the same library.

Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-09-13 23:56:56 +02:00

22 lines
823 B
Plaintext

config BR2_PACKAGE_LTRACE
bool "ltrace"
# 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.
depends on (BR2_i386 || BR2_arm \
|| BR2_powerpc || BR2_sparc || BR2_x86_64)
select BR2_PACKAGE_ELFUTILS
depends on BR2_LARGEFILE # elfutils
depends on BR2_USE_WCHAR # 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
comment "ltrace needs toolchain w/ largefile, wchar"
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR