mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
275ee935b3
I ran into this assertion while GDB was trying to unwind the stack: gdb/inline-frame.c:173: internal-error: void inline_frame_this_id(frame_info*, void**, frame_id*): Assertion `frame_id_p (*this_id)' failed. That is, when building the frame_id for an inline frame, GDB asks for the frame_id of the previous frame. Unfortunately, no valid frame_id was returned for the previous frame, and so the assertion triggers. What is happening is this, I had a stack that looked something like this (the arrows '->' point from caller to callee): normal_frame -> inline_frame However, for whatever reason (e.g. broken debug information, or corrupted stack contents in the inferior), when GDB tries to unwind "normal_frame", it ends up getting back effectively the same frame, thus the call stack looks like this to GDB: .-> normal_frame -> inline_frame | | '-----' Given such a situation we would expect GDB to terminate the stack with an error like this: Backtrace stopped: previous frame identical to this frame (corrupt stack?) However, the inline_frame causes a problem, and here's why: When unwinding we start from the sentinel frame and call get_prev_frame. We eventually end up in get_prev_frame_if_no_cycle, in here we create a raw frame, and as this is frame #0 we immediately return. However, eventually we will try to unwind the stack further. When we do this we inevitably needing to know the frame_id for frame #0, and so, eventually, we end up in compute_frame_id. In compute_frame_id we first find the right unwinder for this frame, in our case (i.e. for inline_frame) the $pc is within the function normal_frame, but also within a block associated with the inlined function inline_frame, as such the inline frame unwinder claims this frame. Back in compute_frame_id we next compute the frame_id, for our inline_frame this means a call to inline_frame_this_id. The ID of an inline frame is based on the id of the previous frame, so from inline_frame_this_id we call get_prev_frame_always, this eventually calls get_prev_frame_if_no_cycle again, which creates another raw frame and calls compute_frame_id (for frames other than frame 0 we immediately compute the frame_id). In compute_frame_id we again identify the correct unwinder for this frame. Our $pc is unchanged, however, the fact that the next frame is of type INLINE_FRAME prevents the inline frame unwinder from claiming this frame again, and so, the standard DWARF frame unwinder claims normal_frame. We return to compute_frame_id and call the standard DWARF function to build the frame_id for normal_frame. With the frame_id of normal_frame figured out we return to compute_frame_id, and then to get_prev_frame_if_no_cycle, where we add the ID for normal_frame into the frame_id cache, and return the frame back to inline_frame_this_id. From inline_frame_this_id we build a frame_id for inline_frame and return to compute_frame_id, and then to get_prev_frame_if_no_cycle, which adds the frame_id for inline_frame into the frame_id cache. So far, so good. However, as we are trying to unwind the complete stack, we eventually ask for the previous frame of normal_frame, remember, at this point GDB doesn't know the stack is corrupted (with a cycle), GDB still needs to figure that out. So, we eventually end up in get_prev_frame_if_no_cycle where we create a raw frame and call compute_frame_id, remember, this is for the frame before normal_frame. The first task for compute_frame_id is to find the unwinder for this frame, so all of the frame sniffers are tried in order, this includes the inline frame sniffer. The inline frame sniffer asks for the $pc, this request is sent up the stack to normal_frame, which, due to its cyclic behaviour, tells GDB that the $pc in the previous frame was the same as the $pc in normal_frame. GDB spots that this $pc corresponds to both the function normal_frame and also the inline function inline_frame. As the next frame is not an INLINE_FRAME then GDB figures that we have not yet built a frame to cover inline_frame, and so the inline sniffer claims this new frame. Our stack is now looking like this: inline_frame -> normal_frame -> inline_frame But, we have not yet computed the frame id for the outer most (on the left) inline_frame. After the frame sniffer has claimed the inline frame GDB returns to compute_frame_id and calls inline_frame_this_id. In here GDB calls get_prev_frame_always, which eventually ends up in get_prev_frame_if_no_cycle again, where we create a raw frame and call compute_frame_id. Just like before, compute_frame_id tries to find an unwinder for this new frame, it sees that the $pc is within both normal_frame and inline_frame, but the next frame is, again, an INLINE_FRAME, so, just like before the standard DWARF unwinder claims this frame. Back in compute_frame_id we again call the standard DWARF function to build the frame_id for this new copy of normal_frame. At this point the stack looks like this: normal_frame -> inline_frame -> normal_frame -> inline_frame After compute_frame_id we return to get_prev_frame_if_no_cycle, where we try to add the frame_id for the new normal_frame into the frame_id cache, however, unlike before, we fail to add this frame_id as it is a duplicate of the previous normal_frame frame_id. Having found a duplicate get_prev_frame_if_no_cycle unlinks the new frame from the stack, and returns nullptr, the stack now looks like this: inline_frame -> normal_frame -> inline_frame The nullptr result from get_prev_frame_if_no_cycle is fed back to inline_frame_this_id, which forwards this to get_frame_id, which immediately returns null_frame_id. As null_frame_id is not considered a valid frame_id, this is what triggers the assertion. In summary then: - inline_frame_this_id currently assumes that as the inline frame exists, we will always get a valid frame back from get_prev_frame_always, - get_prev_frame_if_no_cycle currently assumes that it is safe to return nullptr when it sees a cycle. Notice that in frame.c:compute_frame_id, this code: fi->this_id.value = outer_frame_id; fi->unwind->this_id (fi, &fi->prologue_cache, &fi->this_id.value); gdb_assert (frame_id_p (fi->this_id.value)); The assertion makes it clear that the this_id function must always return a valid frame_id (e.g. null_frame_id is not a valid return value), and similarly in inline_frame.c:inline_frame_this_id this code: *this_id = get_frame_id (get_prev_frame_always (this_frame)); /* snip comment */ gdb_assert (frame_id_p (*this_id)); Makes it clear that every inline frame expects to be able to get a previous frame, which will have a valid frame_id. As I have discussed above, these assumptions don't currently hold in all cases. One possibility would be to move the call to get_prev_frame_always forward from inline_frame_this_id to inline_frame_sniffer, however, this falls foul of (in frame.c:frame_cleanup_after_sniffer) this assertion: /* No sniffer should extend the frame chain; sniff based on what is already certain. */ gdb_assert (!frame->prev_p); This assert prohibits any sniffer from trying to get the previous frame, as getting the previous frame is likely to depend on the next frame, I can understand why this assertion is a good thing, and I'm in no rush to alter this rule. The solution proposed here takes onboard feedback from both Pedro, and Simon (see the links below). The get_prev_frame_if_no_cycle function is renamed to get_prev_frame_maybe_check_cycle, and will now not do cycle detection for inline frames, even when we spot a duplicate frame it is still returned. This is fine, as, if the normal frame has a duplicate frame-id then the inline frame will also have a duplicate frame-id. And so, when we reject the inline frame, the duplicate normal frame, which is previous to the inline frame, will also be rejected. In inline-frame.c the call to get_prev_frame_always is no longer nested inside the call to get_frame_id. There are reasons why get_prev_frame_always can return nullptr, for example, if there is a memory error while trying to get the previous frame, if this should happen then we now give a more informative error message. Historical Links: Patch v2: https://sourceware.org/pipermail/gdb-patches/2021-June/180208.html Feedback: https://sourceware.org/pipermail/gdb-patches/2021-July/180651.html https://sourceware.org/pipermail/gdb-patches/2021-July/180663.html Patch v3: https://sourceware.org/pipermail/gdb-patches/2021-July/181029.html Feedback: https://sourceware.org/pipermail/gdb-patches/2021-July/181035.html Additional input: https://sourceware.org/pipermail/gdb-patches/2021-September/182040.html |
||
---|---|---|
.. | ||
arch | ||
cli | ||
compile | ||
config | ||
contrib | ||
data-directory | ||
doc | ||
dwarf2 | ||
features | ||
guile | ||
mi | ||
nat | ||
po | ||
python | ||
regformats | ||
stubs | ||
syscalls | ||
system-gdbinit | ||
target | ||
testsuite | ||
tui | ||
unittests | ||
.dir-locals.el | ||
.flake8 | ||
.gitattributes | ||
.gitignore | ||
aarch32-linux-nat.c | ||
aarch32-linux-nat.h | ||
aarch32-tdep.c | ||
aarch32-tdep.h | ||
aarch64-fbsd-nat.c | ||
aarch64-fbsd-tdep.c | ||
aarch64-fbsd-tdep.h | ||
aarch64-linux-nat.c | ||
aarch64-linux-tdep.c | ||
aarch64-linux-tdep.h | ||
aarch64-newlib-tdep.c | ||
aarch64-ravenscar-thread.c | ||
aarch64-ravenscar-thread.h | ||
aarch64-tdep.c | ||
aarch64-tdep.h | ||
acinclude.m4 | ||
aclocal.m4 | ||
acx_configure_dir.m4 | ||
ada-exp.h | ||
ada-exp.y | ||
ada-lang.c | ||
ada-lang.h | ||
ada-lex.l | ||
ada-tasks.c | ||
ada-typeprint.c | ||
ada-valprint.c | ||
ada-varobj.c | ||
addrmap.c | ||
addrmap.h | ||
agent.c | ||
aix-thread.c | ||
alloc.c | ||
alpha-bsd-nat.c | ||
alpha-bsd-tdep.c | ||
alpha-bsd-tdep.h | ||
alpha-linux-nat.c | ||
alpha-linux-tdep.c | ||
alpha-mdebug-tdep.c | ||
alpha-netbsd-tdep.c | ||
alpha-obsd-tdep.c | ||
alpha-tdep.c | ||
alpha-tdep.h | ||
amd64-bsd-nat.c | ||
amd64-bsd-nat.h | ||
amd64-darwin-tdep.c | ||
amd64-darwin-tdep.h | ||
amd64-dicos-tdep.c | ||
amd64-fbsd-nat.c | ||
amd64-fbsd-tdep.c | ||
amd64-linux-nat.c | ||
amd64-linux-tdep.c | ||
amd64-linux-tdep.h | ||
amd64-nat.c | ||
amd64-nat.h | ||
amd64-netbsd-nat.c | ||
amd64-netbsd-tdep.c | ||
amd64-obsd-nat.c | ||
amd64-obsd-tdep.c | ||
amd64-ravenscar-thread.c | ||
amd64-ravenscar-thread.h | ||
amd64-sol2-tdep.c | ||
amd64-tdep.c | ||
amd64-tdep.h | ||
amd64-windows-nat.c | ||
amd64-windows-tdep.c | ||
annotate.c | ||
annotate.h | ||
arc-linux-nat.c | ||
arc-linux-tdep.c | ||
arc-linux-tdep.h | ||
arc-newlib-tdep.c | ||
arc-tdep.c | ||
arc-tdep.h | ||
arch-utils.c | ||
arch-utils.h | ||
arm-bsd-tdep.c | ||
arm-fbsd-nat.c | ||
arm-fbsd-tdep.c | ||
arm-fbsd-tdep.h | ||
arm-linux-nat.c | ||
arm-linux-tdep.c | ||
arm-linux-tdep.h | ||
arm-netbsd-nat.c | ||
arm-netbsd-tdep.c | ||
arm-netbsd-tdep.h | ||
arm-none-tdep.c | ||
arm-obsd-tdep.c | ||
arm-pikeos-tdep.c | ||
arm-tdep.c | ||
arm-tdep.h | ||
arm-wince-tdep.c | ||
async-event.c | ||
async-event.h | ||
auto-load.c | ||
auto-load.h | ||
auxv.c | ||
auxv.h | ||
avr-tdep.c | ||
ax_cxx_compile_stdcxx.m4 | ||
ax-gdb.c | ||
ax-gdb.h | ||
ax-general.c | ||
ax.h | ||
bcache.c | ||
bcache.h | ||
bfd-target.c | ||
bfd-target.h | ||
bfin-linux-tdep.c | ||
bfin-tdep.c | ||
bfin-tdep.h | ||
block.c | ||
block.h | ||
blockframe.c | ||
bpf-tdep.c | ||
break-catch-sig.c | ||
break-catch-syscall.c | ||
break-catch-throw.c | ||
breakpoint.c | ||
breakpoint.h | ||
bsd-kvm.c | ||
bsd-kvm.h | ||
bsd-uthread.c | ||
bsd-uthread.h | ||
btrace.c | ||
btrace.h | ||
build-id.c | ||
build-id.h | ||
buildsym-legacy.c | ||
buildsym-legacy.h | ||
buildsym.c | ||
buildsym.h | ||
c-exp.h | ||
c-exp.y | ||
c-lang.c | ||
c-lang.h | ||
c-support.h | ||
c-typeprint.c | ||
c-valprint.c | ||
c-varobj.c | ||
ChangeLog-3.x | ||
ChangeLog-1990 | ||
ChangeLog-1991 | ||
ChangeLog-1992 | ||
ChangeLog-1993 | ||
ChangeLog-1994 | ||
ChangeLog-1995 | ||
ChangeLog-1996 | ||
ChangeLog-1997 | ||
ChangeLog-1998 | ||
ChangeLog-1999 | ||
ChangeLog-2000 | ||
ChangeLog-2001 | ||
ChangeLog-2002 | ||
ChangeLog-2003 | ||
ChangeLog-2004 | ||
ChangeLog-2005 | ||
ChangeLog-2006 | ||
ChangeLog-2007 | ||
ChangeLog-2008 | ||
ChangeLog-2009 | ||
ChangeLog-2010 | ||
ChangeLog-2011 | ||
ChangeLog-2012 | ||
ChangeLog-2013 | ||
ChangeLog-2014 | ||
ChangeLog-2015 | ||
ChangeLog-2016 | ||
ChangeLog-2017 | ||
ChangeLog-2018 | ||
ChangeLog-2019 | ||
ChangeLog-2020 | ||
ChangeLog-2021 | ||
charset-list.h | ||
charset.c | ||
charset.h | ||
cli-out.c | ||
cli-out.h | ||
coff-pe-read.c | ||
coff-pe-read.h | ||
coffread.c | ||
command.h | ||
complaints.c | ||
complaints.h | ||
completer.c | ||
completer.h | ||
config.in | ||
configure | ||
configure.ac | ||
configure.host | ||
configure.nat | ||
configure.tgt | ||
CONTRIBUTE | ||
COPYING | ||
copying.awk | ||
copying.c | ||
copyright.py | ||
corefile.c | ||
corelow.c | ||
cp-abi.c | ||
cp-abi.h | ||
cp-name-parser.y | ||
cp-namespace.c | ||
cp-support.c | ||
cp-support.h | ||
cp-valprint.c | ||
cris-linux-tdep.c | ||
cris-tdep.c | ||
cris-tdep.h | ||
csky-linux-tdep.c | ||
csky-tdep.c | ||
csky-tdep.h | ||
ctfread.c | ||
ctfread.h | ||
d-exp.y | ||
d-lang.c | ||
d-lang.h | ||
d-namespace.c | ||
d-valprint.c | ||
darwin-nat-info.c | ||
darwin-nat.c | ||
darwin-nat.h | ||
dbxread.c | ||
dcache.c | ||
dcache.h | ||
debug.c | ||
debuginfod-support.c | ||
debuginfod-support.h | ||
defs.h | ||
dicos-tdep.c | ||
dicos-tdep.h | ||
dictionary.c | ||
dictionary.h | ||
disable-implicit-rules.mk | ||
disasm-selftests.c | ||
disasm.c | ||
disasm.h | ||
displaced-stepping.c | ||
displaced-stepping.h | ||
dtrace-probe.c | ||
dummy-frame.c | ||
dummy-frame.h | ||
elf-none-tdep.c | ||
elf-none-tdep.h | ||
elfread.c | ||
eval.c | ||
event-top.c | ||
event-top.h | ||
exc_request.defs | ||
exceptions.c | ||
exceptions.h | ||
exec.c | ||
exec.h | ||
expop.h | ||
expprint.c | ||
expression.h | ||
extension-priv.h | ||
extension.c | ||
extension.h | ||
f-array-walker.h | ||
f-exp.h | ||
f-exp.y | ||
f-lang.c | ||
f-lang.h | ||
f-typeprint.c | ||
f-valprint.c | ||
fbsd-nat.c | ||
fbsd-nat.h | ||
fbsd-tdep.c | ||
fbsd-tdep.h | ||
filename-seen-cache.c | ||
filename-seen-cache.h | ||
filesystem.c | ||
filesystem.h | ||
findcmd.c | ||
findvar.c | ||
fork-child.c | ||
frame-base.c | ||
frame-base.h | ||
frame-unwind.c | ||
frame-unwind.h | ||
frame.c | ||
frame.h | ||
frv-linux-tdep.c | ||
frv-tdep.c | ||
frv-tdep.h | ||
ft32-tdep.c | ||
ft32-tdep.h | ||
gcore-elf.c | ||
gcore-elf.h | ||
gcore.c | ||
gcore.h | ||
gcore.in | ||
gdb_bfd.c | ||
gdb_bfd.h | ||
gdb_buildall.sh | ||
gdb_curses.h | ||
gdb_expat.h | ||
gdb_indent.sh | ||
gdb_mbuild.sh | ||
gdb_obstack.c | ||
gdb_obstack.h | ||
gdb_proc_service.h | ||
gdb_regex.c | ||
gdb_regex.h | ||
gdb_vfork.h | ||
gdb_wchar.h | ||
gdb-code-style.el | ||
gdb-demangle.c | ||
gdb-demangle.h | ||
gdb-gdb.gdb.in | ||
gdb-gdb.py.in | ||
gdb-stabs.h | ||
gdb.c | ||
gdb.gdb | ||
gdbarch-selftests.c | ||
gdbarch.c | ||
gdbarch.h | ||
gdbarch.sh | ||
gdbcmd.h | ||
gdbcore.h | ||
gdbthread.h | ||
gdbtypes.c | ||
gdbtypes.h | ||
glibc-tdep.c | ||
glibc-tdep.h | ||
gmp-utils.c | ||
gmp-utils.h | ||
gnu-nat-mig.h | ||
gnu-nat.c | ||
gnu-nat.h | ||
gnu-v2-abi.c | ||
gnu-v3-abi.c | ||
go32-nat.c | ||
go-exp.y | ||
go-lang.c | ||
go-lang.h | ||
go-typeprint.c | ||
go-valprint.c | ||
gregset.h | ||
h8300-tdep.c | ||
hppa-bsd-tdep.c | ||
hppa-bsd-tdep.h | ||
hppa-linux-nat.c | ||
hppa-linux-offsets.h | ||
hppa-linux-tdep.c | ||
hppa-netbsd-nat.c | ||
hppa-netbsd-tdep.c | ||
hppa-obsd-nat.c | ||
hppa-obsd-tdep.c | ||
hppa-tdep.c | ||
hppa-tdep.h | ||
i386-bsd-nat.c | ||
i386-bsd-nat.h | ||
i386-bsd-tdep.c | ||
i386-darwin-nat.c | ||
i386-darwin-tdep.c | ||
i386-darwin-tdep.h | ||
i386-dicos-tdep.c | ||
i386-fbsd-nat.c | ||
i386-fbsd-tdep.c | ||
i386-fbsd-tdep.h | ||
i386-gnu-nat.c | ||
i386-gnu-tdep.c | ||
i386-go32-tdep.c | ||
i386-linux-nat.c | ||
i386-linux-nat.h | ||
i386-linux-tdep.c | ||
i386-linux-tdep.h | ||
i386-netbsd-nat.c | ||
i386-netbsd-tdep.c | ||
i386-nto-tdep.c | ||
i386-obsd-nat.c | ||
i386-obsd-tdep.c | ||
i386-sol2-nat.c | ||
i386-sol2-tdep.c | ||
i386-tdep.c | ||
i386-tdep.h | ||
i386-windows-nat.c | ||
i386-windows-tdep.c | ||
i387-tdep.c | ||
i387-tdep.h | ||
ia64-libunwind-tdep.c | ||
ia64-libunwind-tdep.h | ||
ia64-linux-nat.c | ||
ia64-linux-tdep.c | ||
ia64-tdep.c | ||
ia64-tdep.h | ||
ia64-vms-tdep.c | ||
inf-child.c | ||
inf-child.h | ||
inf-loop.c | ||
inf-loop.h | ||
inf-ptrace.c | ||
inf-ptrace.h | ||
infcall.c | ||
infcall.h | ||
infcmd.c | ||
inferior-iter.h | ||
inferior.c | ||
inferior.h | ||
inflow.c | ||
infrun.c | ||
infrun.h | ||
inline-frame.c | ||
inline-frame.h | ||
interps.c | ||
interps.h | ||
iq2000-tdep.c | ||
jit-reader.in | ||
jit.c | ||
jit.h | ||
language.c | ||
language.h | ||
libiberty.m4 | ||
linespec.c | ||
linespec.h | ||
linux-fork.c | ||
linux-fork.h | ||
linux-nat-trad.c | ||
linux-nat-trad.h | ||
linux-nat.c | ||
linux-nat.h | ||
linux-record.c | ||
linux-record.h | ||
linux-tdep.c | ||
linux-tdep.h | ||
linux-thread-db.c | ||
lm32-tdep.c | ||
location.c | ||
location.h | ||
m2-exp.h | ||
m2-exp.y | ||
m2-lang.c | ||
m2-lang.h | ||
m2-typeprint.c | ||
m2-valprint.c | ||
m32c-tdep.c | ||
m32r-linux-nat.c | ||
m32r-linux-tdep.c | ||
m32r-tdep.c | ||
m32r-tdep.h | ||
m68hc11-tdep.c | ||
m68k-bsd-nat.c | ||
m68k-bsd-tdep.c | ||
m68k-linux-nat.c | ||
m68k-linux-tdep.c | ||
m68k-tdep.c | ||
m68k-tdep.h | ||
machoread.c | ||
macrocmd.c | ||
macroexp.c | ||
macroexp.h | ||
macroscope.c | ||
macroscope.h | ||
macrotab.c | ||
macrotab.h | ||
main.c | ||
main.h | ||
maint-test-options.c | ||
maint-test-settings.c | ||
maint.c | ||
maint.h | ||
MAINTAINERS | ||
make-init-c | ||
make-target-delegates | ||
Makefile.in | ||
mdebugread.c | ||
mdebugread.h | ||
mem-break.c | ||
memattr.c | ||
memattr.h | ||
memory-map.c | ||
memory-map.h | ||
memrange.c | ||
memrange.h | ||
mep-tdep.c | ||
microblaze-linux-tdep.c | ||
microblaze-tdep.c | ||
microblaze-tdep.h | ||
mingw-hdep.c | ||
minidebug.c | ||
minsyms.c | ||
minsyms.h | ||
mips64-obsd-nat.c | ||
mips64-obsd-tdep.c | ||
mips-fbsd-nat.c | ||
mips-fbsd-tdep.c | ||
mips-fbsd-tdep.h | ||
mips-linux-nat.c | ||
mips-linux-tdep.c | ||
mips-linux-tdep.h | ||
mips-netbsd-nat.c | ||
mips-netbsd-tdep.c | ||
mips-netbsd-tdep.h | ||
mips-sde-tdep.c | ||
mips-tdep.c | ||
mips-tdep.h | ||
mipsread.c | ||
mn10300-linux-tdep.c | ||
mn10300-tdep.c | ||
mn10300-tdep.h | ||
moxie-tdep.c | ||
moxie-tdep.h | ||
msg_reply.defs | ||
msg.defs | ||
msp430-tdep.c | ||
namespace.c | ||
namespace.h | ||
nds32-tdep.c | ||
nds32-tdep.h | ||
netbsd-nat.c | ||
netbsd-nat.h | ||
netbsd-tdep.c | ||
netbsd-tdep.h | ||
NEWS | ||
nios2-linux-tdep.c | ||
nios2-tdep.c | ||
nios2-tdep.h | ||
notify.defs | ||
nto-procfs.c | ||
nto-tdep.c | ||
nto-tdep.h | ||
objc-lang.c | ||
objc-lang.h | ||
objfile-flags.h | ||
objfiles.c | ||
objfiles.h | ||
obsd-nat.c | ||
obsd-nat.h | ||
obsd-tdep.c | ||
obsd-tdep.h | ||
observable.c | ||
observable.h | ||
opencl-lang.c | ||
or1k-linux-tdep.c | ||
or1k-tdep.c | ||
or1k-tdep.h | ||
osabi.c | ||
osabi.h | ||
osdata.c | ||
osdata.h | ||
p-exp.y | ||
p-lang.c | ||
p-lang.h | ||
p-typeprint.c | ||
p-valprint.c | ||
parse.c | ||
parser-defs.h | ||
posix-hdep.c | ||
ppc64-tdep.c | ||
ppc64-tdep.h | ||
ppc-fbsd-nat.c | ||
ppc-fbsd-tdep.c | ||
ppc-fbsd-tdep.h | ||
ppc-linux-nat.c | ||
ppc-linux-tdep.c | ||
ppc-linux-tdep.h | ||
ppc-netbsd-nat.c | ||
ppc-netbsd-tdep.c | ||
ppc-netbsd-tdep.h | ||
ppc-obsd-nat.c | ||
ppc-obsd-tdep.c | ||
ppc-obsd-tdep.h | ||
ppc-ravenscar-thread.c | ||
ppc-ravenscar-thread.h | ||
ppc-sysv-tdep.c | ||
ppc-tdep.h | ||
printcmd.c | ||
probe.c | ||
probe.h | ||
PROBLEMS | ||
proc-api.c | ||
proc-events.c | ||
proc-flags.c | ||
proc-service.c | ||
proc-service.list | ||
proc-utils.h | ||
proc-why.c | ||
process_reply.defs | ||
process-stratum-target.c | ||
process-stratum-target.h | ||
procfs.c | ||
procfs.h | ||
producer.c | ||
producer.h | ||
progspace-and-thread.c | ||
progspace-and-thread.h | ||
progspace.c | ||
progspace.h | ||
prologue-value.c | ||
prologue-value.h | ||
psympriv.h | ||
psymtab.c | ||
psymtab.h | ||
pyproject.toml | ||
quick-symbol.h | ||
ravenscar-thread.c | ||
ravenscar-thread.h | ||
README | ||
record-btrace.c | ||
record-btrace.h | ||
record-full.c | ||
record-full.h | ||
record.c | ||
record.h | ||
regcache-dump.c | ||
regcache.c | ||
regcache.h | ||
reggroups.c | ||
reggroups.h | ||
registry.c | ||
registry.h | ||
regset.h | ||
remote-fileio.c | ||
remote-fileio.h | ||
remote-notif.c | ||
remote-notif.h | ||
remote-sim.c | ||
remote.c | ||
remote.h | ||
reply_mig_hack.awk | ||
reverse.c | ||
riscv-fbsd-nat.c | ||
riscv-fbsd-tdep.c | ||
riscv-fbsd-tdep.h | ||
riscv-linux-nat.c | ||
riscv-linux-tdep.c | ||
riscv-none-tdep.c | ||
riscv-ravenscar-thread.c | ||
riscv-ravenscar-thread.h | ||
riscv-tdep.c | ||
riscv-tdep.h | ||
rl78-tdep.c | ||
rs6000-aix-tdep.c | ||
rs6000-aix-tdep.h | ||
rs6000-lynx178-tdep.c | ||
rs6000-nat.c | ||
rs6000-tdep.c | ||
rs6000-tdep.h | ||
run-on-main-thread.c | ||
run-on-main-thread.h | ||
rust-exp.h | ||
rust-lang.c | ||
rust-lang.h | ||
rust-parse.c | ||
rx-tdep.c | ||
s12z-tdep.c | ||
s390-linux-nat.c | ||
s390-linux-tdep.c | ||
s390-linux-tdep.h | ||
s390-tdep.c | ||
s390-tdep.h | ||
sanitize.m4 | ||
scoped-mock-context.h | ||
score-tdep.c | ||
score-tdep.h | ||
selftest-arch.c | ||
selftest-arch.h | ||
sentinel-frame.c | ||
sentinel-frame.h | ||
ser-base.c | ||
ser-base.h | ||
ser-event.c | ||
ser-event.h | ||
ser-go32.c | ||
ser-mingw.c | ||
ser-pipe.c | ||
ser-tcp.c | ||
ser-tcp.h | ||
ser-uds.c | ||
ser-unix.c | ||
ser-unix.h | ||
serial.c | ||
serial.h | ||
sh-linux-tdep.c | ||
sh-netbsd-nat.c | ||
sh-netbsd-tdep.c | ||
sh-tdep.c | ||
sh-tdep.h | ||
silent-rules.mk | ||
sim-regno.h | ||
skip.c | ||
skip.h | ||
sol2-tdep.c | ||
sol2-tdep.h | ||
sol-thread.c | ||
solib-aix.c | ||
solib-aix.h | ||
solib-darwin.c | ||
solib-darwin.h | ||
solib-dsbt.c | ||
solib-frv.c | ||
solib-svr4.c | ||
solib-svr4.h | ||
solib-target.c | ||
solib-target.h | ||
solib.c | ||
solib.h | ||
solist.h | ||
source-cache.c | ||
source-cache.h | ||
source.c | ||
source.h | ||
sparc64-fbsd-nat.c | ||
sparc64-fbsd-tdep.c | ||
sparc64-linux-nat.c | ||
sparc64-linux-tdep.c | ||
sparc64-nat.c | ||
sparc64-netbsd-nat.c | ||
sparc64-netbsd-tdep.c | ||
sparc64-obsd-nat.c | ||
sparc64-obsd-tdep.c | ||
sparc64-sol2-tdep.c | ||
sparc64-tdep.c | ||
sparc64-tdep.h | ||
sparc-linux-nat.c | ||
sparc-linux-tdep.c | ||
sparc-nat.c | ||
sparc-nat.h | ||
sparc-netbsd-nat.c | ||
sparc-netbsd-tdep.c | ||
sparc-obsd-tdep.c | ||
sparc-ravenscar-thread.c | ||
sparc-ravenscar-thread.h | ||
sparc-sol2-nat.c | ||
sparc-sol2-tdep.c | ||
sparc-tdep.c | ||
sparc-tdep.h | ||
stabsread.c | ||
stabsread.h | ||
stack.c | ||
stack.h | ||
stap-probe.c | ||
stap-probe.h | ||
std-operator.def | ||
std-regs.c | ||
stub-termcap.c | ||
symfile-add-flags.h | ||
symfile-debug.c | ||
symfile-mem.c | ||
symfile.c | ||
symfile.h | ||
symmisc.c | ||
symtab.c | ||
symtab.h | ||
target-connection.c | ||
target-connection.h | ||
target-dcache.c | ||
target-dcache.h | ||
target-debug.h | ||
target-delegates.c | ||
target-descriptions.c | ||
target-descriptions.h | ||
target-float.c | ||
target-float.h | ||
target-memory.c | ||
target-section.h | ||
target.c | ||
target.h | ||
terminal.h | ||
test-target.c | ||
test-target.h | ||
thread-fsm.h | ||
thread-iter.c | ||
thread-iter.h | ||
thread.c | ||
tic6x-linux-tdep.c | ||
tic6x-tdep.c | ||
tic6x-tdep.h | ||
tid-parse.c | ||
tid-parse.h | ||
tilegx-linux-nat.c | ||
tilegx-linux-tdep.c | ||
tilegx-tdep.c | ||
tilegx-tdep.h | ||
top.c | ||
top.h | ||
tracectf.c | ||
tracectf.h | ||
tracefile-tfile.c | ||
tracefile.c | ||
tracefile.h | ||
tracepoint.c | ||
tracepoint.h | ||
trad-frame.c | ||
trad-frame.h | ||
tramp-frame.c | ||
tramp-frame.h | ||
transform.m4 | ||
type-stack.c | ||
type-stack.h | ||
typeprint.c | ||
typeprint.h | ||
ui-file.c | ||
ui-file.h | ||
ui-out.c | ||
ui-out.h | ||
ui-style.c | ||
ui-style.h | ||
unwind_stop_reasons.def | ||
user-regs.c | ||
user-regs.h | ||
utils.c | ||
utils.h | ||
v850-tdep.c | ||
valarith.c | ||
valops.c | ||
valprint.c | ||
valprint.h | ||
value.c | ||
value.h | ||
varobj-iter.h | ||
varobj.c | ||
varobj.h | ||
vax-bsd-nat.c | ||
vax-netbsd-tdep.c | ||
vax-tdep.c | ||
vax-tdep.h | ||
version.in | ||
windows-nat.c | ||
windows-nat.h | ||
windows-tdep.c | ||
windows-tdep.h | ||
x86-bsd-nat.c | ||
x86-bsd-nat.h | ||
x86-linux-nat.c | ||
x86-linux-nat.h | ||
x86-nat.c | ||
x86-nat.h | ||
x86-tdep.c | ||
x86-tdep.h | ||
xcoffread.c | ||
xcoffread.h | ||
xml-builtin.h | ||
xml-support.c | ||
xml-support.h | ||
xml-syscall.c | ||
xml-syscall.h | ||
xml-tdesc.c | ||
xml-tdesc.h | ||
xstormy16-tdep.c | ||
xtensa-config.c | ||
xtensa-linux-nat.c | ||
xtensa-linux-tdep.c | ||
xtensa-tdep.c | ||
xtensa-tdep.h | ||
xtensa-xtregs.c | ||
yy-remap.h | ||
z80-tdep.c | ||
z80-tdep.h |
README for GDB release
This is GDB, the GNU source-level debugger.
A summary of new features is in the file `gdb/NEWS'.
Check the GDB home page at http://www.gnu.org/software/gdb/ for up to
date release information, mailing list links and archives, etc.
GDB's bug tracking data base can be found at
http://www.gnu.org/software/gdb/bugs/
Unpacking and Installation -- quick overview
==========================
The release is provided as a gzipped tar file called
'gdb-VERSION.tar.gz', where VERSION is the version of GDB.
The GDB debugger sources, the generic GNU include
files, the BFD ("binary file description") library, the readline
library, and other libraries all have directories of their own
underneath the gdb-VERSION directory. The idea is that a variety of GNU
tools can share a common copy of these things. Be aware of variation
over time--for example don't try to build GDB with a copy of bfd from
a release other than the GDB release (such as a binutils release),
especially if the releases are more than a few weeks apart.
Configuration scripts and makefiles exist to cruise up and down this
directory tree and automatically build all the pieces in the right
order.
When you unpack the gdb-VERSION.tar.gz file, it will create a
source directory called `gdb-VERSION'.
You can build GDB right in the source directory:
cd gdb-VERSION
./configure --prefix=/usr/local (or wherever you want)
make all install
However, we recommend that an empty directory be used instead.
This way you do not clutter your source tree with binary files
and will be able to create different builds with different
configuration options.
You can build GDB in any empty build directory:
mkdir build
cd build
<full path to your sources>/gdb-VERSION/configure [etc...]
make all install
(Building GDB with DJGPP tools for MS-DOS/MS-Windows is slightly
different; see the file gdb-VERSION/gdb/config/djgpp/README for details.)
This will configure and build all the libraries as well as GDB. If
`configure' can't determine your system type, specify one as its
argument, e.g., `./configure sun4' or `./configure decstation'.
Make sure that your 'configure' line ends in 'gdb-VERSION/configure':
/berman/migchain/source/gdb-VERSION/configure # RIGHT
/berman/migchain/source/gdb-VERSION/gdb/configure # WRONG
The GDB package contains several subdirectories, such as 'gdb',
'bfd', and 'readline'. If your 'configure' line ends in
'gdb-VERSION/gdb/configure', then you are configuring only the gdb
subdirectory, not the whole GDB package. This leads to build errors
such as:
make: *** No rule to make target `../bfd/bfd.h', needed by `gdb.o'. Stop.
If you get other compiler errors during this stage, see the `Reporting
Bugs' section below; there are a few known problems.
GDB's `configure' script has many options to enable or disable
different features or dependencies. These options are not generally
known to the top-level `configure', so if you want to see a complete
list of options, invoke the subdirectory `configure', like:
/berman/migchain/source/gdb-VERSION/gdb/configure --help
(Take note of how this differs from the invocation used to actually
configure the build tree.)
GDB requires a C++11 compiler. If you do not have a
C++11 compiler for your system, you may be able to download and install
the GNU CC compiler. It is available via anonymous FTP from the
directory `ftp://ftp.gnu.org/pub/gnu/gcc'. GDB also requires an ISO
C standard library. The GDB remote server, GDBserver, builds with some
non-ISO standard libraries - e.g. for Windows CE.
GDB can optionally be built against various external libraries.
These dependencies are described below in the "`configure options"
section of this README.
GDB can be used as a cross-debugger, running on a machine of one
type while debugging a program running on a machine of another type.
See below.
More Documentation
******************
All the documentation for GDB comes as part of the machine-readable
distribution. The documentation is written in Texinfo format, which
is a documentation system that uses a single source file to produce
both on-line information and a printed manual. You can use one of the
Info formatting commands to create the on-line version of the
documentation and TeX (or `texi2roff') to typeset the printed version.
GDB includes an already formatted copy of the on-line Info version
of this manual in the `gdb/doc' subdirectory. The main Info file is
`gdb-VERSION/gdb/doc/gdb.info', and it refers to subordinate files
matching `gdb.info*' in the same directory. If necessary, you can
print out these files, or read them with any editor; but they are
easier to read using the `info' subsystem in GNU Emacs or the
standalone `info' program, available as part of the GNU Texinfo
distribution.
If you want to format these Info files yourself, you need one of the
Info formatting programs, such as `texinfo-format-buffer' or
`makeinfo'.
If you have `makeinfo' installed, and are in the top level GDB
source directory (`gdb-VERSION'), you can make the Info file by
typing:
cd gdb/doc
make info
If you want to typeset and print copies of this manual, you need
TeX, a program to print its DVI output files, and `texinfo.tex', the
Texinfo definitions file. This file is included in the GDB
distribution, in the directory `gdb-VERSION/texinfo'.
TeX is a typesetting program; it does not print files directly, but
produces output files called DVI files. To print a typeset document,
you need a program to print DVI files. If your system has TeX
installed, chances are it has such a program. The precise command to
use depends on your system; `lpr -d' is common; another (for PostScript
devices) is `dvips'. The DVI print command may require a file name
without any extension or a `.dvi' extension.
TeX also requires a macro definitions file called `texinfo.tex'.
This file tells TeX how to typeset a document written in Texinfo
format. On its own, TeX cannot read, much less typeset a Texinfo file.
`texinfo.tex' is distributed with GDB and is located in the
`gdb-VERSION/texinfo' directory.
If you have TeX and a DVI printer program installed, you can typeset
and print this manual. First switch to the `gdb' subdirectory of
the main source directory (for example, to `gdb-VERSION/gdb') and then type:
make doc/gdb.dvi
If you prefer to have the manual in PDF format, type this from the
`gdb/doc' subdirectory of the main source directory:
make gdb.pdf
For this to work, you will need the PDFTeX package to be installed.
Installing GDB
**************
GDB comes with a `configure' script that automates the process of
preparing GDB for installation; you can then use `make' to build the
`gdb' program.
The GDB distribution includes all the source code you need for GDB in
a single directory. That directory contains:
`gdb-VERSION/{COPYING,COPYING.LIB}'
Standard GNU license files. Please read them.
`gdb-VERSION/bfd'
source for the Binary File Descriptor library
`gdb-VERSION/config*'
script for configuring GDB, along with other support files
`gdb-VERSION/gdb'
the source specific to GDB itself
`gdb-VERSION/include'
GNU include files
`gdb-VERSION/libiberty'
source for the `-liberty' free software library
`gdb-VERSION/opcodes'
source for the library of opcode tables and disassemblers
`gdb-VERSION/readline'
source for the GNU command-line interface
NOTE: The readline library is compiled for use by GDB, but will
not be installed on your system when "make install" is issued.
`gdb-VERSION/sim'
source for some simulators (ARM, D10V, SPARC, M32R, MIPS, PPC, V850, etc)
`gdb-VERSION/texinfo'
The `texinfo.tex' file, which you need in order to make a printed
manual using TeX.
`gdb-VERSION/etc'
Coding standards, useful files for editing GDB, and other
miscellanea.
Note: the following instructions are for building GDB on Unix or
Unix-like systems. Instructions for building with DJGPP for
MS-DOS/MS-Windows are in the file gdb/config/djgpp/README.
The simplest way to configure and build GDB is to run `configure'
from the `gdb-VERSION' directory.
First switch to the `gdb-VERSION' source directory if you are
not already in it; then run `configure'.
For example:
cd gdb-VERSION
./configure
make
Running `configure' followed by `make' builds the `bfd',
`readline', `mmalloc', and `libiberty' libraries, then `gdb' itself.
The configured source files, and the binaries, are left in the
corresponding source directories.
`configure' is a Bourne-shell (`/bin/sh') script; if your system
does not recognize this automatically when you run a different shell,
you may need to run `sh' on it explicitly:
sh configure
If you run `configure' from a directory that contains source
directories for multiple libraries or programs, `configure' creates
configuration files for every directory level underneath (unless
you tell it not to, with the `--norecursion' option).
You can install `gdb' anywhere; it has no hardwired paths. However,
you should make sure that the shell on your path (named by the `SHELL'
environment variable) is publicly readable. Remember that GDB uses the
shell to start your program--some systems refuse to let GDB debug child
processes whose programs are not readable.
Compiling GDB in another directory
==================================
If you want to run GDB versions for several host or target machines,
you need a different `gdb' compiled for each combination of host and
target. `configure' is designed to make this easy by allowing you to
generate each configuration in a separate subdirectory, rather than in
the source directory. If your `make' program handles the `VPATH'
feature correctly (GNU `make' and SunOS 'make' are two that should),
running `make' in each of these directories builds the `gdb' program
specified there.
To build `gdb' in a separate directory, run `configure' with the
`--srcdir' option to specify where to find the source. (You also need
to specify a path to find `configure' itself from your working
directory. If the path to `configure' would be the same as the
argument to `--srcdir', you can leave out the `--srcdir' option; it
will be assumed.)
For example, you can build GDB in a separate
directory for a Sun 4 like this:
cd gdb-VERSION
mkdir ../gdb-sun4
cd ../gdb-sun4
../gdb-VERSION/configure
make
When `configure' builds a configuration using a remote source
directory, it creates a tree for the binaries with the same structure
(and using the same names) as the tree under the source directory. In
the example, you'd find the Sun 4 library `libiberty.a' in the
directory `gdb-sun4/libiberty', and GDB itself in `gdb-sun4/gdb'.
One popular reason to build several GDB configurations in separate
directories is to configure GDB for cross-compiling (where GDB runs on
one machine--the host--while debugging programs that run on another
machine--the target). You specify a cross-debugging target by giving
the `--target=TARGET' option to `configure'.
When you run `make' to build a program or library, you must run it
in a configured directory--whatever directory you were in when you
called `configure' (or one of its subdirectories).
The `Makefile' that `configure' generates in each source directory
also runs recursively. If you type `make' in a source directory such
as `gdb-VERSION' (or in a separate configured directory configured with
`--srcdir=PATH/gdb-VERSION'), you will build all the required libraries,
and then build GDB.
When you have multiple hosts or targets configured in separate
directories, you can run `make' on them in parallel (for example, if
they are NFS-mounted on each of the hosts); they will not interfere
with each other.
Specifying names for hosts and targets
======================================
The specifications used for hosts and targets in the `configure'
script are based on a three-part naming scheme, but some short
predefined aliases are also supported. The full naming scheme encodes
three pieces of information in the following pattern:
ARCHITECTURE-VENDOR-OS
For example, you can use the alias `sun4' as a HOST argument or in a
`--target=TARGET' option. The equivalent full name is
`sparc-sun-sunos4'.
The `configure' script accompanying GDB does not provide any query
facility to list all supported host and target names or aliases.
`configure' calls the Bourne shell script `config.sub' to map
abbreviations to full names; you can read the script, if you wish, or
you can use it to test your guesses on abbreviations--for example:
% sh config.sub sun4
sparc-sun-sunos4.1.1
% sh config.sub sun3
m68k-sun-sunos4.1.1
% sh config.sub decstation
mips-dec-ultrix4.2
% sh config.sub hp300bsd
m68k-hp-bsd
% sh config.sub i386v
i386-pc-sysv
% sh config.sub i786v
Invalid configuration `i786v': machine `i786v' not recognized
`config.sub' is also distributed in the GDB source directory.
`configure' options
===================
Here is a summary of the `configure' options and arguments that are
most often useful for building GDB. `configure' also has several other
options not listed here. There are many options to gdb's `configure'
script, some of which are only useful in special situation.
*note : (autoconf.info)Running configure scripts, for a full
explanation of `configure'.
configure [--help]
[--prefix=DIR]
[--srcdir=PATH]
[--target=TARGET]
[--host=HOST]
[HOST]
You may introduce options with a single `-' rather than `--' if you
prefer; but you may abbreviate option names if you use `--'. Some
more obscure GDB `configure' options are not listed here.
`--help'
Display a quick summary of how to invoke `configure'.
`-prefix=DIR'
Configure the source to install programs and files under directory
`DIR'.
`--srcdir=PATH'
*Warning: using this option requires GNU `make', or another `make'
that compatibly implements the `VPATH' feature.*
Use this option to make configurations in directories separate
from the GDB source directories. Among other things, you can use
this to build (or maintain) several configurations simultaneously,
in separate directories. `configure' writes configuration
specific files in the current directory, but arranges for them to
use the source in the directory PATH. `configure' will create
directories under the working directory in parallel to the source
directories below PATH.
`--host=HOST'
Configure GDB to run on the specified HOST.
There is no convenient way to generate a list of all available
hosts.
`HOST ...'
Same as `--host=HOST'. If you omit this, GDB will guess; it's
quite accurate.
`--target=TARGET'
Configure GDB for cross-debugging programs running on the specified
TARGET. Without this option, GDB is configured to debug programs
that run on the same machine (HOST) as GDB itself.
There is no convenient way to generate a list of all available
targets.
`--enable-targets=TARGET,TARGET,...'
`--enable-targets=all`
Configure GDB for cross-debugging programs running on the
specified list of targets. The special value `all' configures
GDB for debugging programs running on any target it supports.
`--with-gdb-datadir=PATH'
Set the GDB-specific data directory. GDB will look here for
certain supporting files or scripts. This defaults to the `gdb'
subdirectory of `datadir' (which can be set using `--datadir').
`--with-relocated-sources=DIR'
Sets up the default source path substitution rule so that
directory names recorded in debug information will be
automatically adjusted for any directory under DIR. DIR should
be a subdirectory of GDB's configured prefix, the one mentioned
in the `--prefix' or `--exec-prefix' options to configure. This
option is useful if GDB is supposed to be moved to a different
place after it is built.
`--enable-64-bit-bfd'
Enable 64-bit support in BFD on 32-bit hosts.
`--disable-gdbmi'
Build GDB without the GDB/MI machine interface.
`--enable-tui'
Build GDB with the text-mode full-screen user interface (TUI).
Requires a curses library (ncurses and cursesX are also
supported).
`--with-curses'
Use the curses library instead of the termcap library, for
text-mode terminal operations.
`--with-debuginfod'
Build GDB with libdebuginfod, the debuginfod client library. Used
to automatically fetch source files and separate debug files from
debuginfod servers using the associated executable's build ID.
Enabled by default if libdebuginfod is installed and found at
configure time. debuginfod is packaged with elfutils, starting
with version 0.178. You can get the latest version from
'https://sourceware.org/elfutils/'.
`--with-libunwind-ia64'
Use the libunwind library for unwinding function call stack on ia64
target platforms.
See http://www.nongnu.org/libunwind/index.html for details.
`--with-system-readline'
Use the readline library installed on the host, rather than the
library supplied as part of GDB. Readline 7 or newer is required;
this is enforced by the build system.
`--with-system-zlib
Use the zlib library installed on the host, rather than the
library supplied as part of GDB.
`--with-expat'
Build GDB with Expat, a library for XML parsing. (Done by
default if libexpat is installed and found at configure time.)
This library is used to read XML files supplied with GDB. If it
is unavailable, some features, such as remote protocol memory
maps, target descriptions, and shared library lists, that are
based on XML files, will not be available in GDB. If your host
does not have libexpat installed, you can get the latest version
from `http://expat.sourceforge.net'.
`--with-libiconv-prefix[=DIR]'
Build GDB with GNU libiconv, a character set encoding conversion
library. This is not done by default, as on GNU systems the
`iconv' that is built in to the C library is sufficient. If your
host does not have a working `iconv', you can get the latest
version of GNU iconv from `https://www.gnu.org/software/libiconv/'.
GDB's build system also supports building GNU libiconv as part of
the overall build. See the GDB manual instructions on how to do
this.
`--with-lzma'
Build GDB with LZMA, a compression library. (Done by default if
liblzma is installed and found at configure time.) LZMA is used
by GDB's "mini debuginfo" feature, which is only useful on
platforms using the ELF object file format. If your host does
not have liblzma installed, you can get the latest version from
`https://tukaani.org/xz/'.
`--with-libgmp-prefix=DIR'
Build GDB using the GMP library installed at the directory DIR.
If your host does not have GMP installed, you can get the latest
version at `https://gmplib.org/'.
`--with-mpfr'
Build GDB with GNU MPFR, a library for multiple-precision
floating-point computation with correct rounding. (Done by
default if GNU MPFR is installed and found at configure time.)
This library is used to emulate target floating-point arithmetic
during expression evaluation when the target uses different
floating-point formats than the host. If GNU MPFR is not
available, GDB will fall back to using host floating-point
arithmetic. If your host does not have GNU MPFR installed, you
can get the latest version from `https://www.mpfr.org/'.
`--with-python[=PYTHON]'
Build GDB with Python scripting support. (Done by default if
libpython is present and found at configure time.) Python makes
GDB scripting much more powerful than the restricted CLI
scripting language. If your host does not have Python installed,
you can find it on `http://www.python.org/download/'. The oldest
version of Python supported by GDB is 2.6. The optional argument
PYTHON is used to find the Python headers and libraries. It can
be either the name of a Python executable, or the name of the
directory in which Python is installed.
`--with-guile[=GUILE]'
Build GDB with GNU Guile scripting support. (Done by default if
libguile is present and found at configure time.) If your host
does not have Guile installed, you can find it at
`https://www.gnu.org/software/guile/'. The optional argument
GUILE can be a version number, which will cause `configure' to
try to use that version of Guile; or the file name of a
`pkg-config' executable, which will be queried to find the
information needed to compile and link against Guile.
`--enable-source-highlight'
When printing source code, use source highlighting. This requires
libsource-highlight to be installed and is enabled by default
if the library is found.
`--with-xxhash'
Use libxxhash for hashing. This has no user-visible effect but
speeds up various GDB operations such as symbol loading. Enabled
by default if libxxhash is found.
`--without-included-regex'
Don't use the regex library included with GDB (as part of the
libiberty library). This is the default on hosts with version 2
of the GNU C library.
`--with-sysroot=DIR'
Use DIR as the default system root directory for libraries whose
file names begin with `/lib' or `/usr/lib'. (The value of DIR
can be modified at run time by using the "set sysroot" command.)
If DIR is under the GDB configured prefix (set with `--prefix' or
`--exec-prefix' options), the default system root will be
automatically adjusted if and when GDB is moved to a different
location.
`--with-system-gdbinit=FILE'
Configure GDB to automatically load a system-wide init file.
FILE should be an absolute file name. If FILE is in a directory
under the configured prefix, and GDB is moved to another location
after being built, the location of the system-wide init file will
be adjusted accordingly.
`--with-system-gdbinit-dir=DIR'
Configure GDB to automatically load system-wide init files from
a directory. Files with extensions `.gdb', `.py' (if Python
support is enabled) and `.scm' (if Guile support is enabled) are
supported. DIR should be an absolute directory name. If DIR is
in a directory under the configured prefix, and GDB is moved to
another location after being built, the location of the system-
wide init directory will be adjusted accordingly.
`--enable-build-warnings'
When building the GDB sources, ask the compiler to warn about any
code which looks even vaguely suspicious. It passes many
different warning flags, depending on the exact version of the
compiler you are using.
`--enable-werror'
Treat compiler warnings as werrors. It adds the -Werror flag to
the compiler, which will fail the compilation if the compiler
outputs any warning messages.
`--enable-ubsan'
Enable the GCC undefined behavior sanitizer. By default this is
disabled in GDB releases, but enabled when building from git.
The undefined behavior sanitizer checks for C++ undefined
behavior. It has a performance cost, so if you are looking at
GDB's performance, you should disable it.
`--enable-unit-tests[=yes|no]'
Enable (i.e., include) support for unit tests when compiling GDB
and GDBServer. Note that if this option is not passed, GDB will
have selftests if it is a development build, and will *not* have
selftests if it is a non-development build.
`configure' accepts other options, for compatibility with configuring
other GNU tools recursively.
Remote debugging
=================
The files m68k-stub.c, i386-stub.c, and sparc-stub.c are examples
of remote stubs to be used with remote.c. They are designed to run
standalone on an m68k, i386, or SPARC cpu and communicate properly
with the remote.c stub over a serial line.
The directory gdbserver/ contains `gdbserver', a program that
allows remote debugging for Unix applications. GDBserver is only
supported for some native configurations.
The file gdbserver/README includes further notes on GDBserver; in
particular, it explains how to build GDBserver for cross-debugging
(where GDBserver runs on the target machine, which is of a different
architecture than the host machine running GDB).
Reporting Bugs in GDB
=====================
There are several ways of reporting bugs in GDB. The prefered
method is to use the World Wide Web:
http://www.gnu.org/software/gdb/bugs/
As an alternative, the bug report can be submitted, via e-mail, to the
address "bug-gdb@gnu.org".
When submitting a bug, please include the GDB version number, and
how you configured it (e.g., "sun4" or "mach386 host,
i586-intel-synopsys target"). Since GDB supports so many
different configurations, it is important that you be precise about
this. The simplest way to do this is to include the output from these
commands:
% gdb --version
% gdb --config
For more information on how/whether to report bugs, see the
Reporting Bugs chapter of the GDB manual (gdb/doc/gdb.texinfo).
Graphical interface to GDB -- X Windows, MS Windows
==========================
Several graphical interfaces to GDB are available. You should
check:
https://sourceware.org/gdb/wiki/GDB%20Front%20Ends
for an up-to-date list.
Emacs users will very likely enjoy the Grand Unified Debugger mode;
try typing `M-x gdb RET'.
Writing Code for GDB
=====================
There is information about writing code for GDB in the file
`CONTRIBUTE' and at the website:
http://www.gnu.org/software/gdb/
in particular in the wiki.
If you are pondering writing anything but a short patch, especially
take note of the information about copyrights and copyright assignment.
It can take quite a while to get all the paperwork done, so
we encourage you to start that process as soon as you decide you are
planning to work on something, or at least well ahead of when you
think you will be ready to submit the patches.
GDB Testsuite
=============
Included with the GDB distribution is a DejaGNU based testsuite
that can either be used to test your newly built GDB, or for
regression testing a GDB with local modifications.
Running the testsuite requires the prior installation of DejaGNU,
which is generally available via ftp. The directory
ftp://sources.redhat.com/pub/dejagnu/ will contain a recent snapshot.
Once DejaGNU is installed, you can run the tests in one of the
following ways:
(1) cd gdb-VERSION
make check-gdb
or
(2) cd gdb-VERSION/gdb
make check
or
(3) cd gdb-VERSION/gdb/testsuite
make site.exp (builds the site specific file)
runtest -tool gdb GDB=../gdb (or GDB=<somepath> as appropriate)
When using a `make'-based method, you can use the Makefile variable
`RUNTESTFLAGS' to pass flags to `runtest', e.g.:
make RUNTESTFLAGS=--directory=gdb.cp check
If you use GNU make, you can use its `-j' option to run the testsuite
in parallel. This can greatly reduce the amount of time it takes for
the testsuite to run. In this case, if you set `RUNTESTFLAGS' then,
by default, the tests will be run serially even under `-j'. You can
override this and force a parallel run by setting the `make' variable
`FORCE_PARALLEL' to any non-empty value. Note that the parallel `make
check' assumes that you want to run the entire testsuite, so it is not
compatible with some dejagnu options, like `--directory'.
The last method gives you slightly more control in case of problems
with building one or more test executables or if you are using the
testsuite `standalone', without it being part of the GDB source tree.
See the DejaGNU documentation for further details.
Copyright and License Notices
=============================
Most files maintained by the GDB Project contain a copyright notice
as well as a license notice, usually at the start of the file.
To reduce the length of copyright notices, consecutive years in the
copyright notice can be combined into a single range. For instance,
the following list of copyright years...
1986, 1988, 1989, 1991-1993, 1999, 2000, 2007, 2008, 2009, 2010, 2011
... is abbreviated into:
1986, 1988-1989, 1991-1993, 1999-2000, 2007-2011
Every year of each range, inclusive, is a copyrightable year that
could be listed individually.
(this is for editing this file with GNU emacs)
Local Variables:
mode: text
End: