]> rtime.felk.cvut.cz Git - coffee/buildroot.git/blob - package/valgrind/Config.in
package: remove the trailing slash sign from <PKG>_SITE variable
[coffee/buildroot.git] / package / valgrind / Config.in
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 || BR2_mips || \
5                    BR2_mipsel || BR2_mips64 || BR2_mips64el
6         help
7           Tool for debugging and profiling Linux programs.
8
9           http://valgrind.kde.org/
10
11 if BR2_PACKAGE_VALGRIND
12
13 config BR2_PACKAGE_VALGRIND_MEMCHECK
14         bool "Memcheck: a memory error detector"
15         default y
16         help
17           This option allows to install the Memcheck tool
18
19 config BR2_PACKAGE_VALGRIND_CACHEGRIND
20         bool "Cachegrind: a cache and branch-prediction profiler"
21         default y
22         help
23           This option allows to install the Cachegrind tool
24
25 config BR2_PACKAGE_VALGRIND_CALLGRIND
26         bool "Callgrind: a call-graph generating cache and branch prediction profiler"
27         default y
28         help
29           This option allows to install the Callgrind tool
30
31 config BR2_PACKAGE_VALGRIND_HELGRIND
32         bool "Helgrind: a thread error detector"
33         default y
34         help
35           This option allows to install the Helgrind tool
36
37 config BR2_PACKAGE_VALGRIND_DRD
38         bool "DRD: a thread error detector"
39         default y
40         help
41           This option allows to install the DRD tool
42
43 config BR2_PACKAGE_VALGRIND_MASSIF
44         bool "Massif: a heap profiler"
45         default y
46         help
47           This option allows to install the Massif tool
48
49 config BR2_PACKAGE_VALGRIND_DHAT
50         bool "DHAT: a dynamic heap analysis tool"
51         default y
52         help
53           This option allows to install the DHAT tool
54
55 config BR2_PACKAGE_VALGRIND_PTRCHECK
56         bool "Ptrcheck: an experimental head, stack and global array overrun detector"
57         help
58           This option allows to install the Ptrcheck tool
59
60 config BR2_PACKAGE_VALGRIND_BBV
61         bool "BBV: an experimental basic block vector generation tool"
62         help
63           This option allows to install the BBV tool
64
65 config BR2_PACKAGE_VALGRIND_LACKEY
66         bool "Lackey: an example tool"
67         help
68           This option allows to install the Lackey tool
69
70 config BR2_PACKAGE_VALGRIND_NULGRIND
71         bool "Nulgrind: the minimal Valgrind tool"
72         help
73           This option allows to install the Nulgrind tool
74
75 endif