summaryrefslogtreecommitdiffstats
path: root/rules/latrace.in
blob: a52147be320f1bc4dd056d194c4e7ca8005f5a5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## SECTION=debug_tools

menuconfig LATRACE
	tristate
	prompt "latrace                       "
	select HOST_FLEX
	select BINUTILS if LATRACE_DEMANGLE
	help
	  A tool to trace library calls and get their statistics in a
	  manner similar to the strace utility

if LATRACE

config LATRACE_DEMANGLE
	bool
	prompt "demangle support"
	default y
	help
	  Enable support for the demangle feature, required to trace C++ libraries
	  for example.

endif