2012-07-27 17:26:23 +02:00
|
|
|
config BR2_PACKAGE_SYSPROF
|
|
|
|
bool "sysprof"
|
|
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
|
|
depends on BR2_USE_WCHAR # glib2
|
2013-07-15 21:47:50 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # glib2
|
2013-11-20 18:29:45 +01:00
|
|
|
depends on BR2_USE_MMU # glib2
|
2012-07-27 17:26:23 +02:00
|
|
|
# In its util.h file, sysprof contains architecture-specific
|
|
|
|
# code
|
|
|
|
depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_sh4a || BR2_sh4aeb
|
|
|
|
help
|
|
|
|
Sysprof is a statistical, system-wide profiler that can
|
|
|
|
profile user and kernel code using the perf API.
|
|
|
|
|
|
|
|
http://sysprof.com
|
|
|
|
|
2013-07-15 21:47:50 +02:00
|
|
|
if BR2_PACKAGE_SYSPROF
|
|
|
|
|
2012-07-27 17:26:23 +02:00
|
|
|
config BR2_PACKAGE_SYSPROF_GUI
|
|
|
|
bool "sysprof GUI"
|
|
|
|
depends on BR2_PACKAGE_LIBGTK2
|
|
|
|
select BR2_PACKAGE_LIBGLADE
|
|
|
|
select BR2_PACKAGE_GDK_PIXBUF
|
|
|
|
help
|
|
|
|
GUI for the sysprof system-wide statistical profiler.
|
|
|
|
|
2013-07-15 21:47:50 +02:00
|
|
|
endif
|
|
|
|
|
2013-10-13 16:55:32 +02:00
|
|
|
comment "sysprof needs a toolchain w/ wchar, threads"
|
2013-11-20 18:29:45 +01:00
|
|
|
depends on BR2_USE_MMU
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_sh4a || BR2_sh4aeb
|
|
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|