summaryrefslogtreecommitdiffstats
path: root/package/lttng-tools
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-04 21:51:18 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-05-05 10:46:53 +0200
commita36f24f79b92558812e24823a951e803cc8689ee (patch)
tree0b286041aa08decc6bd748072945c282eccd5c68 /package/lttng-tools
parentee707e5e76d9b8636a2a972761bea0b881e83a7d (diff)
downloadbuildroot-a36f24f79b92558812e24823a951e803cc8689ee.tar.gz
buildroot-a36f24f79b92558812e24823a951e803cc8689ee.zip
lttng-tools: disable on uClibc/musl
lttng-tools has been broken on uClibc/musl since a long time due to dlmopen() and LM_ID_BASE not being implemented. The issue has been reported to the upstream lttng developers more than two months ago [1], and no fix has been provided. Therefore, it's time to disable it on uClibc and musl. Fixes: http://autobuild.buildroot.net/results/f9e82a87618bcdcd46d670697b5ac75836f7250d/ (uclibc) http://autobuild.buildroot.net/results/cb0952483b580b053a585760e59d78d11f46fc60/ (musl) [1] https://lists.lttng.org/pipermail/lttng-dev/2017-February/026921.html Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/lttng-tools')
-rw-r--r--package/lttng-tools/Config.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/package/lttng-tools/Config.in b/package/lttng-tools/Config.in
index 187e424b0b..8888ef7b8a 100644
--- a/package/lttng-tools/Config.in
+++ b/package/lttng-tools/Config.in
@@ -4,6 +4,8 @@ config BR2_PACKAGE_LTTNG_TOOLS
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on !BR2_STATIC_LIBS # uses dlfcn
+ # uclibc/musl don't implement dlmopen()/LM_ID_BASE
+ depends on BR2_TOOLCHAIN_USES_GLIBC
select BR2_PACKAGE_LIBURCU
select BR2_PACKAGE_LIBXML2
select BR2_PACKAGE_POPT
@@ -27,6 +29,7 @@ config BR2_PACKAGE_LTTNG_TOOLS
http://lttng.org
-comment "lttng-tools needs a toolchain w/ threads, dynamic library"
+comment "lttng-tools needs a glibc toolchain w/ threads, dynamic library"
depends on BR2_PACKAGE_LIBURCU_ARCH_SUPPORTS
- depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
+ depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
+ !BR2_TOOLCHAIN_USES_GLIBC
OpenPOWER on IntegriCloud