df3cc4bb1c
trace-cmd needs NPTL since bump to version 2.9.1 in commit
0e1231a3c0
and
https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/commit/?id=08b9d5076455c93c997376c8089ee12b9071785b:
/nvmedata/autobuild/instance-24/output-1/host/lib/gcc/i586-buildroot-linux-uclibc/10.3.0/../../../../i586-buildroot-linux-uclibc/bin/ld: /nvmedata/autobuild/instance-24/output-1/build/trace-cmd-2.9.7/lib/trace-cmd/libtracecmd.a(trace-timesync.o): in function `tracecmd_tsync_with_host':
trace-timesync.c:(.text+0x12e1): undefined reference to `pthread_setaffinity_np'
Fixes:
- http://autobuild.buildroot.org/results/9a88aaf92760b34958ef5b1708de83e46ccdb587
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
20 lines
677 B
Plaintext
20 lines
677 B
Plaintext
config BR2_PACKAGE_TRACE_CMD
|
|
bool "trace-cmd"
|
|
# pthread_setaffinity_np
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
|
help
|
|
Command line reader for ftrace.
|
|
|
|
To use this profiling tool, you should enable ftrace in your
|
|
kernel configuration. This command collect traces on your
|
|
target. You can analyse these traces on the target or on
|
|
the host via the gui "kernel shark"
|
|
|
|
http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git
|
|
|
|
comment "trace-cmd needs a toolchain w/ NPTL, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|