summaryrefslogtreecommitdiffstats
path: root/rules/ltrace.in
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2006-03-27 08:55:51 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2006-03-27 08:55:51 +0000
commit2284e1efab718b46cd800eaa14c036492a0ad7dd (patch)
treee10e62493f4dceee76cc6ec5593a1051d5fd83d1 /rules/ltrace.in
parent45badaca479775a0192918c15c19cfa1539b7412 (diff)
downloadptxdist-2284e1efab718b46cd800eaa14c036492a0ad7dd.tar.gz
ptxdist-2284e1efab718b46cd800eaa14c036492a0ad7dd.tar.xz
* rules/libelf.in, rules/debug.in, rules/libelf.make, rules/Kconfig.in, rules/ltrace.in, rules/ltrace.make:
added libelf and ltrace git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.10-trunk@5284 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/ltrace.in')
-rw-r--r--rules/ltrace.in13
1 files changed, 13 insertions, 0 deletions
diff --git a/rules/ltrace.in b/rules/ltrace.in
new file mode 100644
index 000000000..47029aeda
--- /dev/null
+++ b/rules/ltrace.in
@@ -0,0 +1,13 @@
+config LTRACE
+ bool
+ prompt "ltrace"
+ select LIBELF
+ help
+ ltrace is a debugging program which runs a specified command
+ until it exits. While the command is executing, ltrace intercepts and
+ records the dynamic library calls which are called by the executed
+ process and the signals received by that process. It can also
+ intercept and print the system calls executed by the program.
+
+ The program to be traced need not be recompiled for this, so you can
+ use it on binaries for which you don't have the source handy.