|
@@ -15,6 +15,7 @@ config BR2_PACKAGE_LTRACE
|
|
|
depends on BR2_USE_WCHAR # elfutils
|
|
|
depends on !BR2_STATIC_LIBS # elfutils
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # elfutils
|
|
|
+ depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC
|
|
|
depends on BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
|
|
|
select BR2_PACKAGE_ELFUTILS
|
|
|
help
|
|
@@ -25,7 +26,8 @@ config BR2_PACKAGE_LTRACE
|
|
|
|
|
|
http://ltrace.org
|
|
|
|
|
|
-comment "ltrace needs a toolchain w/ wchar, dynamic library, threads"
|
|
|
+comment "ltrace needs a uClibc or glibc toolchain w/ wchar, dynamic library, threads"
|
|
|
depends on BR2_PACKAGE_LTRACE_ARCH_SUPPORTS
|
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
|
|
|
- || !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+ || !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|
+ || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC)
|