board/csky: fixup gdb instructions in readme.txt
[buildroot-gz.git] / package / valgrind / Config.in
blob40e219d95af23449467ae1fd859893e207f65976
1 comment "valgrind needs a toolchain w/ dynamic library"
2         depends on BR2_STATIC_LIBS
4 config BR2_PACKAGE_VALGRIND
5         bool "valgrind"
6         depends on BR2_ARM_CPU_ARMV7A || BR2_i386 || \
7                    BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \
8                    BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le || \
9                    BR2_x86_64
10         depends on !BR2_STATIC_LIBS
11         depends on !BR2_MIPS_SOFT_FLOAT
12         help
13           Tool for debugging and profiling Linux programs.
15           http://valgrind.org/
17 if BR2_PACKAGE_VALGRIND
19 config BR2_PACKAGE_VALGRIND_MEMCHECK
20         bool "Memcheck: a memory error detector"
21         default y
22         help
23           This option allows to install the Memcheck tool
25 config BR2_PACKAGE_VALGRIND_CACHEGRIND
26         bool "Cachegrind: a cache and branch-prediction profiler"
27         default y
28         help
29           This option allows to install the Cachegrind tool
31 config BR2_PACKAGE_VALGRIND_CALLGRIND
32         bool "Callgrind: a call-graph generating cache and branch prediction profiler"
33         default y
34         help
35           This option allows to install the Callgrind tool
37 config BR2_PACKAGE_VALGRIND_HELGRIND
38         bool "Helgrind: a thread error detector"
39         default y
40         help
41           This option allows to install the Helgrind tool
43 config BR2_PACKAGE_VALGRIND_DRD
44         bool "DRD: a thread error detector"
45         default y
46         help
47           This option allows to install the DRD tool
49 config BR2_PACKAGE_VALGRIND_MASSIF
50         bool "Massif: a heap profiler"
51         default y
52         help
53           This option allows to install the Massif tool
55 config BR2_PACKAGE_VALGRIND_DHAT
56         bool "DHAT: a dynamic heap analysis tool"
57         default y
58         help
59           This option allows to install the DHAT tool
61 config BR2_PACKAGE_VALGRIND_SGCHECK
62         bool "SGCheck: an experimental stack and global array overrun detector"
63         help
64           This option allows to install the SGCheck tool
66 config BR2_PACKAGE_VALGRIND_BBV
67         bool "BBV: an experimental basic block vector generation tool"
68         help
69           This option allows to install the BBV tool
71 config BR2_PACKAGE_VALGRIND_LACKEY
72         bool "Lackey: an example tool"
73         help
74           This option allows to install the Lackey tool
76 config BR2_PACKAGE_VALGRIND_NULGRIND
77         bool "Nulgrind: the minimal Valgrind tool"
78         help
79           This option allows to install the Nulgrind tool
81 endif