summaryrefslogtreecommitdiffstats
path: root/documentation/dev-manual/dev-manual-common-tasks.xml
diff options
context:
space:
mode:
authorScott Rifenbark <scott.m.rifenbark@intel.com>2013-04-16 11:36:44 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-17 22:34:18 +0100
commitd2ebf82fe7761e7adfa123dc450dc212f76d6507 (patch)
treeacdced32f41c76084ab3b6611212e075cffdb11f /documentation/dev-manual/dev-manual-common-tasks.xml
parente9d7fa38d72141bd1ab6874005e48191ada06a4f (diff)
downloadpoky-d2ebf82fe7761e7adfa123dc450dc212f76d6507.tar.gz
dev-manual: Edits to "Debugging With the Gnu Project Debugger (GDB) Remotely" section.
(From yocto-docs rev: 7946fc90e83f7b40752619d408325e9c76071b5a) Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/dev-manual/dev-manual-common-tasks.xml')
-rw-r--r--documentation/dev-manual/dev-manual-common-tasks.xml11
1 files changed, 6 insertions, 5 deletions
diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index 5bcf947fab..a63a13b4a0 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -4004,17 +4004,18 @@
4004 <para> 4004 <para>
4005 GDB allows you to examine running programs, which in turn helps you to understand and fix problems. 4005 GDB allows you to examine running programs, which in turn helps you to understand and fix problems.
4006 It also allows you to perform post-mortem style analysis of program crashes. 4006 It also allows you to perform post-mortem style analysis of program crashes.
4007 GDB is available as a package within the Yocto Project and by default is 4007 GDB is available as a package within the Yocto Project and is
4008 installed in SDK images. 4008 installed in SDK images by default.
4009 See the "<ulink url='&YOCTO_DOCS_REF_URL;#ref-images'>Images</ulink>" chapter 4009 See the "<ulink url='&YOCTO_DOCS_REF_URL;#ref-images'>Images</ulink>" chapter
4010 in the Yocto Project Reference Manual for a description of these images. 4010 in the Yocto Project Reference Manual for a description of these images.
4011 You can find information on GDB at <ulink url="http://sourceware.org/gdb/"/>. 4011 You can find information on GDB at <ulink url="http://sourceware.org/gdb/"/>.
4012 </para> 4012 </para>
4013 4013
4014 <tip> 4014 <tip>
4015 For best results, install <filename>-dbg</filename> packages for the applications 4015 For best results, install <filename>-dbg</filename> packages for
4016 you are going to debug. 4016 the applications you are going to debug.
4017 Doing so makes available extra debug symbols that give you more meaningful output. 4017 Doing so makes extra debug symbols available that give you more
4018 meaningful output.
4018 </tip> 4019 </tip>
4019 4020
4020 <para> 4021 <para>