Ltrace
ltrace {./prog_name}
– Trace library calls of a given program.
GDB
gdb
is a program debugger
Valgrind
valgrind is a dynamic analysis tool to detect memory leak and threading bugs, also list information about heap blocks used.
Documentation: https://valgrind.org/docs/manual/index.html
Make
make
is used to build a large project by using a file called makefile
, which is file having commands that describe how to make this large project.
make
make all
make clean
make