Differences between revisions 8 and 9
Revision 8 as of 2018-09-19 02:33:57
Size: 879
Editor: PaulWise
Comment: ruby-rbtrace was accepted, update link
Revision 9 as of 2022-11-13 07:09:19
Size: 880
Editor: PaulWise
Comment: fix Python trace, thanks to LeLutin
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
|| Python || [[https://docs.python.org/3/library/trace.html|Python trace module]] || `python -m trace --count /usr/bin/program args` || || Python || [[https://docs.python.org/3/library/trace.html|Python trace module]] || `python3 -m trace --trace /usr/bin/program args` ||

There are various ways to trace execution of programs written in various languages:

Tracing type

Tool

Command-line

ELF (syscalls)

strace

strace program args

ELF (functions)

ltrace

ltrace program args

ELF (functions)

latrace

latrace program args

getenv(3) calls

getenvy

export LD_PRELOAD="libgetenvy.so" ; GETENVY=1 program args

Shell

all shells

sh -x /usr/bin/program args

Perl

libdevel-trace-perl

perl -d:Trace /usr/bin/program args

Ruby

ruby-rbtrace

rbtrace --exec /usr/bin/program args

Python

Python trace module

python3 -m trace --trace /usr/bin/program args


CategoryDebugging