2008-04-24 18:54:29 +02:00
|
|
|
config BR2_PACKAGE_OPROFILE
|
|
|
|
bool "oprofile"
|
2010-07-29 08:45:20 +02:00
|
|
|
# The dependency on binutils_target does not work with
|
|
|
|
# external toolchains since the binutils version was not
|
|
|
|
# choosen in the config. This will have to be fixed later.
|
|
|
|
depends on !BR2_TOOLCHAIN_EXTERNAL
|
2008-04-24 18:54:29 +02:00
|
|
|
select BR2_PACKAGE_POPT
|
2009-01-26 20:19:10 +01:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2008-04-24 18:54:29 +02:00
|
|
|
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
|
2008-08-04 21:07:05 +02:00
|
|
|
libraries, and applications.
|
2009-01-26 20:19:10 +01:00
|
|
|
|
|
|
|
comment "oprofile requires a toolchain with C++ support enabled"
|
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP
|