⇤ ← Revision 1 as of 2018-08-26 08:22:07
Size: 515
Comment: initial draft
|
Size: 540
Comment: debugging category
|
Deletions are marked like this. | Additions are marked like this. |
Line 9: | Line 9: |
---- CategoryDebugging |
There are various ways to trace execution of programs written in various languages:
Program type |
Tool |
Command-line |
ELF (syscalls) |
strace program args |
|
ELF (functions) |
ltrace program args |
|
Shell |
all shells |
sh -x /usr/bin/program args |
Perl |
perl -d:Trace /usr/bin/program args |
|
Ruby |
rbtrace --exec /usr/bin/program args |