e50431b208
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>
22 lines
823 B
Plaintext
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
|