2012-01-31 20:40:06 +01:00
|
|
|
config BR2_PACKAGE_LTTNG_BABELTRACE
|
|
|
|
bool "lttng-babeltrace"
|
|
|
|
depends on BR2_PACKAGE_LTTNG_TOOLS
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
|
|
select BR2_PACKAGE_LIBGLIB2
|
2013-07-15 21:47:50 +02:00
|
|
|
# libglib2 needs thread support and gettext which needs wchar support, and
|
|
|
|
# we also depends on util-linux which needs wchar
|
2012-02-04 15:48:44 +01:00
|
|
|
depends on BR2_USE_WCHAR
|
2013-07-15 21:47:50 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2012-02-04 15:48:44 +01:00
|
|
|
# util-linux depends on largefile support
|
|
|
|
depends on BR2_LARGEFILE
|
2012-01-31 20:40:06 +01:00
|
|
|
help
|
|
|
|
Babeltrace is part of the LTTng 2.x project.
|
|
|
|
|
|
|
|
This project provides trace read and write libraries, as
|
|
|
|
well as a trace converter. A plugin can be created for any
|
|
|
|
trace format to allow its conversion to/from another trace
|
|
|
|
format.
|
|
|
|
|
|
|
|
Having this tool on the target is not mandatory. You can
|
|
|
|
transfer the binary trace output from the target to your
|
|
|
|
development workstation, and use babeltrace here. Buildroot
|
|
|
|
automatically builds a host babeltrace in
|
|
|
|
$(O)/host/usr/bin/babeltrace as a dependency of the
|
|
|
|
lttng-tools package.
|
|
|
|
|
|
|
|
http://lttng.org
|
2012-02-04 15:48:44 +01:00
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "lttng-babeltrace needs a toolchain w/ wchar, threads, largefile"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_PACKAGE_LTTNG_TOOLS
|
|
|
|
depends on !BR2_USE_WCHAR || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
|