Differences between revisions 3 and 7 (spanning 4 versions)
Revision 3 as of 2018-08-26 08:50:13
Size: 649
Editor: lamby
Comment:
Revision 7 as of 2018-08-26 10:44:14
Size: 886
Editor: PaulWise
Comment: getenvy
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
|| Program type || Tool || Command-line || || Tracing type || Tool || Command-line ||
Line 6: Line 6:
|| ELF (functions) || DebianPackage:latrace || `latrace program args` ||
|| getenv(3) calls || [[https://github.com/jwilk/getenvy|getenvy]] || `export LD_PRELOAD="libgetenvy.so" ; GETENVY=1 program args` ||
Line 9: Line 11:
|| Python || https://docs.python.org/3.0/library/trace.html || `python -m trace --count somefile.py ...` || || Python || [[https://docs.python.org/3/library/trace.html|Python trace module]] || `python -m trace --count /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

python -m trace --count /usr/bin/program args


CategoryDebugging