Config.in 920 B

12345678910111213141516171819202122232425262728293031
  1. config 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. http://sysprof.com
  14. if BR2_PACKAGE_SYSPROF
  15. config BR2_PACKAGE_SYSPROF_GUI
  16. bool "sysprof GUI"
  17. depends on BR2_PACKAGE_LIBGTK2
  18. select BR2_PACKAGE_LIBGLADE
  19. select BR2_PACKAGE_GDK_PIXBUF
  20. help
  21. GUI for the sysprof system-wide statistical profiler.
  22. endif
  23. comment "sysprof needs a toolchain w/ wchar, threads"
  24. depends on BR2_USE_MMU
  25. depends on BR2_i386 || BR2_x86_64 || BR2_powerpc || BR2_sh4a || BR2_sh4aeb
  26. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS