Class Central is learner-supported. When you buy through links on our site, we may earn an affiliate commission.

Cybrary

How to Use GDB (BSWJ)

via Cybrary

Overview

Teaching Assistants George Mcpherson Vikramajeet Khatri

(Disclaimer: Breaking Stuff with Joe is a Cybrary series that will be running indefinitely. You will not earn CEU/CPE hours by watching any individual 'Breaking Stuff with Joe' episode. However, you can still earn a certificate of completion for each episode completed.)

Using the GNU Debugger

The GNU debugger, also called GDB, is the most popular debugging tool for UNIX systems. It works to debug several languages including C and C++. When the GDB program is executed, it runs other programs, allowing users to have control over these programs. You are able to see what is going on inside a program as it executes, or what a program was doing at the time it crashed.

Using the GDB allows you to determine the following information:

  • When a core dump happens, which expression or statement did it crash on?
  • What are the program variable values at a specific point during the execution of the program?
  • When an error happens as a function is executed, which line of the program has the call to that function, and what are the parameters?
  • What is the outcome of a specific expression in a program?

While GDP may assist you in identifying memory leakage related bugs, it’s not a tool that is designed to detect these leakages. Also, GDB can’t be used on programs that compile with errors and it doesn’t help to fix those issues.

Why Use the GNU Debugger?

The GNU debugger is a powerful debugging tool that comes with many benefits. The biggest asset of GDB is its functionality. With this debugger, you are able to do the following:

  1. Start the program you are debugging, specifying any variables that may affect its behavior.
  2. Instruct the program to discontinue on conditions you specify.
  3. Inspect what has occurred when the program being debugged has stopped.
  4. Modify things in the program allowing you to experiment with resolving the effects of one bug and continue on to learn about others.

Additional reasons to use the GDB tool include:

  • Availability – GDB is easily downloaded online. Currently, the latest version (GDP 8.3) is available at the GNU website.
  • Usability – The GDB debugging tool is simple to manage once the basics are learned.
  • Interface requirements – GDB uses a simple command line interface.
  • Integrations – In addition to the C and C++ languages, GDB supports Ada, Assembly, D, Fortran, Go, Objective-C, OpenCL, Modula-2, Pascal, and Rust.

For more information about the GNU debugger tool, and to learn to use it, check out our how to Use GDB tutorial. The class provides you with foundation information and the steps you need to take to apply it to a live program.

Syllabus

  • BSWJ: GDB
    • BSWJ: GDB

Taught by

Joe Perry

Reviews

Start your review of How to Use GDB (BSWJ)

Never Stop Learning.

Get personalized course recommendations, track subjects and courses with reminders, and more.

Someone learning on their laptop while sitting on the floor.