Updated: October 28, 2024 |
You can attach the debugger to a process running on a target machine.
To debug an active program, you must attach to a binary built with debug information, so the debugger can match binary
instructions with lines of code. Any binary with debug information has a bug icon
() next to its name
in the Project Explorer. The binary selected for running when you launch a project depends on the
launch configuration settings.
The IDE attaches the debugger to the process and stops execution immediately. The Debug view displays information about the active threads and their stack frames. More details on this view are found in the entry in the C/C++ Development User Guide.
You may not see any source code when the application is initially stopped. For example, if it had just issued a sleep() call, there's no code to display. In this case, you can open a source file, add breakpoints, and click the Resume button to make GDB continue executing (after the sleep period finishes) to a certain line of code. You will then see the corresponding stack trace and code displayed.
For information on the debugging controls, see Debug perspective controls.