diff options
author | Scott Rifenbark <srifenbark@gmail.com> | 2019-05-06 13:53:15 -0700 |
---|---|---|
committer | Scott Rifenbark <srifenbark@gmail.com> | 2019-05-06 13:53:15 -0700 |
commit | 327daf1e12f950b4700f9a8d8c10e143fa126b86 (patch) | |
tree | 88e7adf1591962b4947c75e6a46860d07a6ff835 /docs/part-1/debug-overview.md | |
parent | c4cabee5bacd0412ee29853a7f4d51b39b90089a (diff) |
XDS Debugging: Rename of files and update devguides-book.yml
The debugging section for XDS needs new file names and also
needs to fix the order in which the files appear as topics.
I have done both.
Change-Id: I57920f3c0860d1b5a7ab9299c538b57140579581
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Diffstat (limited to 'docs/part-1/debug-overview.md')
-rw-r--r-- | docs/part-1/debug-overview.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/part-1/debug-overview.md b/docs/part-1/debug-overview.md new file mode 100644 index 0000000..e1bdffd --- /dev/null +++ b/docs/part-1/debug-overview.md @@ -0,0 +1,22 @@ +# Debug your first AGL application + +Debug is based on gdb and you need to use `xds-gdb` as a wrapper on gdb to +cross-debug your application. + +This tool allows you to debug an application built with XDS without the need to install gdb or any cross tools. + +Two debugging models are supported: + +1. native debugging +1. XDS remote debugging requiring an XDS agent/server setup and that allows you to cross debug your application. + +By default XDS debug model is used and you need to define `XDS_NATIVE_GDB` +variable to use native gdb debug mode instead. + +--- + +Links to subchapters : + +- [Configuration](./5-1_debug-first-app-config.html) +- [xds-gdb from command line](./5-2_debug-first-app-cmd.html) +- [xds-gdb within an IDE](./5-3_debug-first-app-ide.html) |