This is intended to be a reference/guidebook for those learning to debug code used with the GCC (GNU Compiler Collection).

GCC Debugging/Draft

Tools

  • g++ (C++ compiler frontend)
  • gdb (GNU Project Debugger)

Errors and Warnings

Making sense of error and warning messages.

Errors

  • these will keep your code from compiling

Warnings

  • these indicate areas of code that may cause problems, but won't necessarily break your program

Websites

Windows Versions

This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.