* bfd.c (bfd_scan_vma): Pass end argument on to strtoul.
[deliverable/binutils-gdb.git] / gdb / .gdbinit
CommitLineData
dd3b648e
RP
1echo Setting up the environment for debugging gdb.\n
2
a3a9ba23
JG
3set complaints 1
4
dd3b648e
RP
5b fatal
6
7b info_command
8commands
9 silent
10 return
11end
12
b3916cbb
FF
13dir ../mmalloc
14dir ../libiberty
15dir ../bfd
72e35288 16set prompt (top-gdb)
bad0fe06
JK
17
18define list-objfiles
19set $obj = object_files
20printf "objfile bfd msyms name\n"
21while $obj != 0
22printf "0x%-8x 0x%-8x %6d %s\n", $obj, $obj->obfd, \
23 $obj->minimal_symbol_count, $obj->name
24set var $obj = $obj->next
25end
This page took 0.144568 seconds and 4 git commands to generate.