2012-01-31 20:40:03 +01:00
|
|
|
config BR2_PACKAGE_LTTNG_TOOLS
|
|
|
|
bool "lttng-tools"
|
|
|
|
select BR2_PACKAGE_LIBURCU
|
2014-09-24 08:43:03 +02:00
|
|
|
select BR2_PACKAGE_LIBXML2
|
2012-01-31 20:40:03 +01:00
|
|
|
select BR2_PACKAGE_POPT
|
2013-07-04 00:04:48 +02:00
|
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
2012-12-17 02:32:02 +01:00
|
|
|
# liburcu only works on some architectures and requires thread support
|
2012-03-20 09:17:46 +01:00
|
|
|
depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_powerpc || BR2_x86_64
|
2014-04-13 21:58:58 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58595 # lttng-tools/gcc-4.{7,8}.x bug
|
2014-03-08 15:38:31 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
|
2013-07-04 00:04:48 +02:00
|
|
|
depends on BR2_USE_WCHAR # util-linux
|
2012-12-17 02:32:02 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2012-01-31 20:40:03 +01:00
|
|
|
help
|
2015-03-06 18:35:52 +01:00
|
|
|
Userspace utilities for the LTTng 2.x tracing
|
2012-01-31 20:40:03 +01:00
|
|
|
infrastructure.
|
|
|
|
|
|
|
|
Those utilities are required on the target system to start
|
|
|
|
and stop tracing sessions. Analysis of the trace can be done
|
|
|
|
on the host machine using the babeltrace utility. This
|
|
|
|
utility is automatically built by Buildroot in
|
|
|
|
$(O)/host/usr/bin/babeltrace, as a dependency of
|
|
|
|
lttng-tools. However, there is also a lttng-babeltrace
|
|
|
|
package for the target, if babeltrace on the target is
|
|
|
|
interesting.
|
|
|
|
|
2012-02-04 15:48:46 +01:00
|
|
|
If userspace tracing is desired, you need to enable
|
|
|
|
lttng-libust.
|
|
|
|
|
2012-01-31 20:40:03 +01:00
|
|
|
http://lttng.org
|
2012-12-17 02:32:02 +01:00
|
|
|
|
2015-03-30 23:07:30 +02:00
|
|
|
comment "lttng-tools needs a toolchain w/ threads, wchar"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_arm || BR2_armeb || BR2_i386 || BR2_powerpc || BR2_x86_64
|
2015-03-30 23:07:30 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR
|
2014-04-13 21:58:58 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58595 # lttng-tools/gcc-4.{7,8}.x bug
|
2014-03-08 15:38:31 +01:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_58854 # liburcu/gcc-4.8.x bug
|
|
|
|
|
2014-04-13 21:58:58 +02:00
|
|
|
comment "lttng-tools needs a toolchain not affected by GCC bug 58854 and 58595"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_58854 || BR2_TOOLCHAIN_HAS_GCC_BUG_58595
|