April 2020
Intermediate to advanced
412 pages
9h 58m
English
We have learned how to copy an application to the target system and run it there. Now, let's learn how to start debugging an application on a target system using GDB. In this recipe, we will only learn how to invoke the debugger and run applications in the debugger environment. It will be used as a foundation for more advanced and practical debugging techniques later:
$ gdb ./hello
(gdb) run
(gdb) q
This terminates the debugging ...