diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2019-06-08 19:39:53 -0700 |
---|---|---|
committer | Scott Rifenbark <srifenbark@gmail.com> | 2019-06-08 19:39:53 -0700 |
commit | 5fc626ceff728a6ecde7104016b4ad317626fb36 (patch) | |
tree | 8b3548e09ca6ed0ea151eefe4493b1165212aae7 /docs | |
parent | cc92c073b4c1eb098c22f2a398d8b02ff3ffdfa4 (diff) |
Getting Started -> debug app: Fixed broken links.
Aside from the links, I made sure the target link topic
names matched reality.
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/getting-started/app-workflow-debug-app.md | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/docs/getting-started/app-workflow-debug-app.md b/docs/getting-started/app-workflow-debug-app.md index 63ec8cd..280c227 100644 --- a/docs/getting-started/app-workflow-debug-app.md +++ b/docs/getting-started/app-workflow-debug-app.md @@ -11,33 +11,41 @@ Or, is it better for you to use a remote user interface that is part of an Integrated Development Environment (IDE) such as Eclipse? For general information on debugging an application, see the -"[Debug your first AGL application](../../../devguides/reference/xds/part-1/5_debug-first-app.html)" -section. +"[Overview](../../../devguides/reference/xds/part-1/debug-overview.html)" +topic under "Debugging Your First AGL Application". -Here are three methods: +Three methods exist: * Use `gdb` on the target. - **NOTE:** How to use `gdb` and other debugging tools such as `valgrind`, `strace`, + <!--section-note--> + **NOTE:** + + How to use `gdb` and other debugging tools such as `valgrind`, `strace`, and so forth is beyond the scope of the AGL Documentation. See the appropriate documentation for third-party debugging tools. + <!--end-section-note--> * Use Core Dumps if you have set the `agl-devel` feature. Core Dumps are obviously more suited for post-mortem analysis. For features, see the "[Initializing Your Build Environment](./image-workflow-initialize-build-environment.html#initializing-your-build-environment)" - section. + topic. + + <!--section-note--> + **NOTE:** - **NOTE:** Core Dumps are available only with the "Flunky Flounder" release (i.e. 6.x). + Core Dumps are available only with the "Flunky Flounder" release (i.e. 6.x). + <!--end-section-note--> * Use XDS remotely, which is based on `gdb` and [`gdbserver`](https://en.wikipedia.org/wiki/Gdbserver). See the - "[XDS remote debugging mode](../../../devguides/reference/xds/part-1/5-2_debug-first-app-cmd.html#xds-remote-debugging-mode)" - section for more information. + "[Using the XDS Command Line](../../../devguides/reference/xds/part-1/debug-cmd-line.html#xds-remote-debugging-mode)" + topic for more information. For information on how to remotely debug the application using XDS from within an IDE, see the - "[Debug using `xds-gdb` within an IDE](../../../devguides/reference/xds/part-1/5-3_debug-first-app-ide.html)" + "[Using an IDE](../../../devguides/reference/xds/part-1/debug-ide.html)" section. In order to use third-party debugging tools, you need to include the tools in the target image. |