aboutsummaryrefslogtreecommitdiff
path: root/content/debugging-go-programs-with-gnu-debugger.article
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2018-04-13 19:58:08 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2018-04-13 20:25:50 +0000
commit6788987eaeb886066958855e0dd2b12778204543 (patch)
treea830ab11aad55293f6e3d294538d9332c43754c2 /content/debugging-go-programs-with-gnu-debugger.article
parent7edc962a942e4a9d5e06dde79299f7fc5605f000 (diff)
content: change more links from http to https
talks.golang.org blog.golang.org godoc.org swtch.com And few misc ones done by hand. Change-Id: Ia2c4fee630814a1ef3b143098bbac3edd6a45064 Reviewed-on: https://go-review.googlesource.com/106977 Reviewed-by: Andrew Bonventre <andybons@golang.org>
Diffstat (limited to 'content/debugging-go-programs-with-gnu-debugger.article')
-rw-r--r--content/debugging-go-programs-with-gnu-debugger.article2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/debugging-go-programs-with-gnu-debugger.article b/content/debugging-go-programs-with-gnu-debugger.article
index 265a479..6988636 100644
--- a/content/debugging-go-programs-with-gnu-debugger.article
+++ b/content/debugging-go-programs-with-gnu-debugger.article
@@ -6,7 +6,7 @@ Andrew Gerrand
* Introduction
-Last year we [[http://blog.golang.org/2010/11/debugging-go-code-status-report.html][reported]] that Go's [[https://golang.org/cmd/gc/][gc]]/[[https://golang.org/cmd/6l/][ld]] toolchain produces DWARFv3 debugging information that can be read by the GNU Debugger (GDB). Since then, work has continued steadily on improving support for debugging Go code with GDB.
+Last year we [[https://blog.golang.org/2010/11/debugging-go-code-status-report.html][reported]] that Go's [[https://golang.org/cmd/gc/][gc]]/[[https://golang.org/cmd/6l/][ld]] toolchain produces DWARFv3 debugging information that can be read by the GNU Debugger (GDB). Since then, work has continued steadily on improving support for debugging Go code with GDB.
Among the improvements are the ability to inspect goroutines and to print native Go data types, including structs, slices, strings, maps, interfaces, and channels.
To learn more about Go and GDB, see the [[https://golang.org/doc/debugging_with_gdb.html][Debugging with GDB]] article.