X-Git-Url: http://rtime.felk.cvut.cz/gitweb/coffee/buildroot.git/blobdiff_plain/efee851c614926dd9ed0f49c4808a6d9b4f64eb0..d23cce19c299e3010ba2dca84ab4ad35eff3cdbb:/package/ltrace/Config.in diff --git a/package/ltrace/Config.in b/package/ltrace/Config.in index aee14bd001..2b42a846e1 100644 --- a/package/ltrace/Config.in +++ b/package/ltrace/Config.in @@ -1,9 +1,14 @@ 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_mips || BR2_mipsel \ - || BR2_powerpc || BR2_sparc || BR2_x86_64) - select BR2_PACKAGE_LIBELF + || BR2_powerpc || BR2_sparc || BR2_x86_64 || BR2_xtensa) select BR2_PACKAGE_ELFUTILS + depends on BR2_USE_WCHAR # elfutils + depends on !BR2_STATIC_LIBS # elfutils help Debugging program which runs a specified command until it exits. While the command is executing, ltrace intercepts and records @@ -11,3 +16,6 @@ config BR2_PACKAGE_LTRACE process and the signals received by that process. http://ltrace.org + +comment "ltrace needs toolchain w/ wchar, dynamic library" + depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS