Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 270 Bytes

debuggers.md

File metadata and controls

22 lines (20 loc) · 270 Bytes
  • gbd
  • lldb
  • valgrind
  • AddressSanitizer
  • splint

using gdb

gdb appname
r
#(wait for segfault)
bt full

using the compiler

CFLAGS="$CFLAGS -O0 -fbuiltin -g"

finding what libaries are in use

strace -eopen appname