Python (Debugging with GDB)

From Get docs
Gdb/docs/latest/gdb/Python

Next: Guile, Previous: Aliases, Up: Extending GDB   [Contents][Index]



23.3 Extending GDB using Python

You can extend GDB using the Python programming language. This feature is available only if GDB was configured using --with-python. GDB can be built against either Python 2 or Python 3; which one you have depends on this configure-time option.

Python scripts used by GDB should be installed in data-directory/python, where data-directory is the data directory as determined at GDB startup (see Data Files). This directory, known as the python directory, is automatically added to the Python Search Path in order to allow the Python interpreter to locate all scripts installed at this location.

Additionally, GDB commands and convenience functions which are written in Python and are located in the data-directory/python/gdb/command or data-directory/python/gdb/function directories are automatically imported when GDB starts.

Python Commands:    Accessing Python from GDB.
Python API:    Accessing GDB from Python.
Python Auto-loading:    Automatically loading Python code.
Python modules:    Python modules provided by GDB.