diff --git a/doc/debugging_with_gdb.html b/doc/debugging_with_gdb.html index 52a6e76723..f0e65ea291 100644 --- a/doc/debugging_with_gdb.html +++ b/doc/debugging_with_gdb.html @@ -4,7 +4,8 @@ }-->

-This applies to the gc toolchain. Gccgo has native gdb support. +This applies to the standard toolchain (the gc Go +compiler and tools). Gccgo has native gdb support. Besides this overview you might want to consult the GDB manual.

@@ -49,6 +50,14 @@ when debugging, pass the flags -gcflags "-N -l" to the debugged.

+

+If you want to use gdb to inspect a core dump, you can trigger a dump +on a program crash, on systems that permit it, by setting +GOTRACEBACK=crash in the environment (see the + runtime package +documentation for more info). +

+

Common Operations