66bb10b7b0
This patch lines up the comments in Config.in files that clarify which toolchain options the package depends on. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
27 lines
970 B
Plaintext
27 lines
970 B
Plaintext
config BR2_PACKAGE_OPROFILE
|
|
bool "oprofile"
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_POPT
|
|
select BR2_PACKAGE_BINUTILS
|
|
select BR2_PACKAGE_LIBPFM4 if BR2_powerpc
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_aarch64 # binutils
|
|
help
|
|
OProfile is a system-wide profiler for Linux systems,
|
|
capable of profiling all running code at low overhead.
|
|
OProfile is released under the GNU GPL.
|
|
|
|
It consists of a kernel driver and a daemon for collecting
|
|
sample data, and several post-profiling tools for turning
|
|
data into information.
|
|
|
|
OProfile leverages the hardware performance counters of the
|
|
CPU to enable profiling of a wide variety of interesting
|
|
statistics, which can also be used for basic time-spent
|
|
profiling. All code is profiled: hardware and software
|
|
interrupt handlers, kernel modules, the kernel, shared
|
|
libraries, and applications.
|
|
|
|
comment "oprofile needs a toolchain w/ C++"
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|