Config.in 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. config BR2_PACKAGE_VALGRIND
  2. bool "valgrind"
  3. depends on BR2_i386 || BR2_x86_64 || BR2_cortex_a8 || \
  4. BR2_cortex_a9 || BR2_powerpc
  5. help
  6. Tool for debugging and profiling Linux programs.
  7. http://valgrind.kde.org/
  8. if BR2_PACKAGE_VALGRIND
  9. config BR2_PACKAGE_VALGRIND_MEMCHECK
  10. bool "Memcheck: a memory error detector"
  11. default y
  12. help
  13. This option allows to install the Memcheck tool
  14. config BR2_PACKAGE_VALGRIND_CACHEGRIND
  15. bool "Cachegrind: a cache and branch-prediction profiler"
  16. default y
  17. help
  18. This option allows to install the Cachegrind tool
  19. config BR2_PACKAGE_VALGRIND_CALLGRIND
  20. bool "Callgrind: a call-graph generating cache and branch prediction profiler"
  21. default y
  22. help
  23. This option allows to install the Callgrind tool
  24. config BR2_PACKAGE_VALGRIND_HELGRIND
  25. bool "Helgrind: a thread error detector"
  26. default y
  27. help
  28. This option allows to install the Helgrind tool
  29. config BR2_PACKAGE_VALGRIND_DRD
  30. bool "DRD: a thread error detector"
  31. default y
  32. help
  33. This option allows to install the DRD tool
  34. config BR2_PACKAGE_VALGRIND_MASSIF
  35. bool "Massif: a heap profiler"
  36. default y
  37. help
  38. This option allows to install the Massif tool
  39. config BR2_PACKAGE_VALGRIND_DHAT
  40. bool "DHAT: a dynamic heap analysis tool"
  41. default y
  42. help
  43. This option allows to install the DHAT tool
  44. config BR2_PACKAGE_VALGRIND_PTRCHECK
  45. bool "Ptrcheck: an experimental head, stack and global array overrun detector"
  46. help
  47. This option allows to install the Ptrcheck tool
  48. config BR2_PACKAGE_VALGRIND_BBV
  49. bool "BBV: an experimental basic block vector generation tool"
  50. help
  51. This option allows to install the BBV tool
  52. config BR2_PACKAGE_VALGRIND_LACKEY
  53. bool "Lackey: an example tool"
  54. help
  55. This option allows to install the Lackey tool
  56. config BR2_PACKAGE_VALGRIND_NULGRIND
  57. bool "Nulgrind: the minimal Valgrind tool"
  58. help
  59. This option allows to install the Nulgrind tool
  60. endif