pidgin/nest

Use newer gdb startup message

2021-07-22, Sorvival
88f4a3010e9f
Parents aa9b6946a636
Children 7c3b95c88023
Use newer gdb startup message

The debugging documentation showcased a very old example of the message you see
when starting gdb. This commit updates the example message to the way it looks
in a newer version of gdb (v10.1.90).

Testing Done:
Ran `dev-server.sh` and verified content looked as intended.

Reviewed at https://reviews.imfreedom.org/r/827/
--- a/hugo/content/development/debugging.md Mon Jul 19 18:55:12 2021 -0500
+++ b/hugo/content/development/debugging.md Thu Jul 22 22:40:38 2021 -0500
@@ -108,14 +108,21 @@
1. Next, you'll see some information from gdb similar to this:
```
-GNU gdb Red Hat Linux (5.3post-0.20021129.18rh)
-Copyright 2003 Free Software Foundation, Inc.
-GDB is free software, covered by the GNU General Public License, and you are
-welcome to change it and/or distribute copies of it under certain conditions.
-Type "show copying" to see the conditions.
-There is absolutely no warranty for GDB. Type "show warranty" for details.
-This GDB was configured as "i386-redhat-linux-gnu"...
-(no debugging symbols found)...
+GNU gdb (Debian 10.1-1.7) 10.1.90.20210103-git
+Copyright (C) 2021 Free Software Foundation, Inc.
+License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.
+Type "show copying" and "show warranty" for details.
+This GDB was configured as "x86_64-linux-gnu".
+Type "show configuration" for configuration details.
+For bug reporting instructions, please see:
+<https://www.gnu.org/software/gdb/bugs/>.
+Find the GDB manual and other documentation resources online at:
+ <http://www.gnu.org/software/gdb/documentation/>.
+
+For help, type "help".
+Type "apropos word" to search for commands related to "word".
```
1. Start the application from withing the debugger by executing the following