uftrace needs threads since its addition to buildroot in commit
09c97972d9
Fixes:
- http://autobuild.buildroot.org/results/d27c34a2f773aeb3c806d56dd2468d17caf2fbc6
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
27 lines
892 B
Plaintext
27 lines
892 B
Plaintext
config BR2_PACKAGE_UFTRACE_ARCH_SUPPORTS
|
|
bool
|
|
default y if BR2_ARM_CPU_ARMV6 || BR2_ARM_CPU_ARMV7A
|
|
default y if BR2_aarch64
|
|
default y if BR2_i386
|
|
default y if BR2_x86_64
|
|
|
|
config BR2_PACKAGE_UFTRACE
|
|
bool "uftrace"
|
|
depends on BR2_PACKAGE_UFTRACE_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
select BR2_PACKAGE_ARGP_STANDALONE if \
|
|
BR2_TOOLCHAIN_USES_UCLIBC || \
|
|
BR2_TOOLCHAIN_USES_MUSL
|
|
help
|
|
The uftrace tool is to trace and analyze execution of a
|
|
program written in C/C++. It was heavily inspired by the
|
|
ftrace framework of the Linux kernel (especially function
|
|
graph tracer) and supports userspace programs.
|
|
It supports various kind of commands and filters to help
|
|
analysis of the program execution and performance.
|
|
|
|
https://github.com/namhyung/uftrace
|
|
|
|
comment "uftrace needs a toolchain w/ threads"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|