1config BR2_PACKAGE_SYSPROF 2 bool "sysprof" 3 depends on BR2_USE_WCHAR # glib2 4 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 5 depends on BR2_USE_MMU # glib2 6 # In its util.h file, sysprof contains architecture-specific 7 # code 8 depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_sh4a || BR2_sh4aeb 9 select BR2_PACKAGE_LIBGLIB2 10 help 11 Sysprof is a statistical, system-wide profiler that can 12 profile user and kernel code using the perf API. 13 14 http://sysprof.com 15 16if BR2_PACKAGE_SYSPROF 17 18config BR2_PACKAGE_SYSPROF_GUI 19 bool "sysprof GUI" 20 depends on BR2_PACKAGE_LIBGTK2 21 select BR2_PACKAGE_LIBGLADE 22 select BR2_PACKAGE_GDK_PIXBUF 23 help 24 GUI for the sysprof system-wide statistical profiler. 25 26endif 27 28comment "sysprof needs a toolchain w/ wchar, threads" 29 depends on BR2_USE_MMU 30 depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_sh4a || BR2_sh4aeb 31 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS 32