30cc84d899
Fix the following build failure raised since the addition of the package
in commit 1474f1b34b
:
../src/event-plugin.c:10:10: fatal error: dlfcn.h: No such file or directory
10 | #include <dlfcn.h>
| ^~~~~~~~~
Fixes:
- http://autobuild.buildroot.org/results/7802d1ad00293147edda39683f6d3f614dd48263
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[yann.morin.1998@free.fr: only list first-level inherited deps]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
16 lines
543 B
Plaintext
16 lines
543 B
Plaintext
config BR2_PACKAGE_LIBTRACEEVENT
|
|
bool "libtraceevent"
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
|
help
|
|
libtraceevent is a library that interfaces with the ftrace
|
|
subsystem in the linux kernel.
|
|
It used to be bundled directly in the trace-cmd
|
|
tool, but it was eventually extracted so that it can be used
|
|
by multiple other tools and libraries, such as libtracefs and
|
|
rtla.
|
|
|
|
https://git.kernel.org/pub/scm/libs/libtrace/libtraceevent.git/
|
|
|
|
comment "libtraceevent needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|