add '.gdbinit' (recommended settings when running ECL from within gdb)
This commit is contained in:
parent
464efd3a8a
commit
a453239d14
1 changed files with 21 additions and 0 deletions
21
debug/.gdbinit
Normal file
21
debug/.gdbinit
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# adapt path below
|
||||
add-auto-load-safe-path /home/username/eql5/debug/.gdbinit
|
||||
|
||||
#
|
||||
# Recommended settings for debugging either ecl_min or ecl.
|
||||
#
|
||||
delete break
|
||||
break cl_cos
|
||||
break cl_error
|
||||
break cl_cerror
|
||||
break CEerror
|
||||
break FEerror
|
||||
break FEunbound_variable
|
||||
break FEundefined_function
|
||||
break FEwrong_type_argument
|
||||
break FEinvalid_function
|
||||
set confirm off
|
||||
handle SIGBUS nostop
|
||||
handle SIGPWR nostop pass noprint
|
||||
handle SIGXCPU nostop pass noprint
|
||||
handle EXC_BAD_ACCESS nostop pass noprint
|
||||
Loading…
Add table
Reference in a new issue