About 2,780,000 results
Open links in new tab
  1. Writing a Pretty-Printer (Debugging with GDB) - sourceware.org

    Writing a Pretty-Printer (Debugging with GDB)We recommend that you put your core pretty-printers into a Python package. If your pretty-printers are for use with a library, we further …

  2. [SOLVED] gdb prettyprinting is broken (16.2) / Programming ...

    Mar 31, 2025 · Do you know if this was a breaking change from something arch did or was it gdb 16? I'm not sure why you linked to the man page it doesnt say anything about python or printing

  3. python - gdb.printing not available in python2 - Stack Overflow

    Jul 13, 2018 · In the "good" gdb, run python import gdb.printing; print (gdb.printing.__file__) to find where the module is located. Then run python print(sys.path) in both the good and bad gdb to …

  4. GitHub - asarium/gdb-natvis: Python GDB pretty printer using ...

    This implements Natvis based pretty printing in GDB. GDB exposes a python API for writing pretty printers of certain types which is used by this project. This project will allow creating custom …

  5. Python Interpreter in GNU Debugger — pysheeet

    Python Interpreter in GNU Debugger # Abstract # The GNU Debugger (GDB) is the most powerful debugging tool for developers to troubleshoot errors in their code. However, it is hard for …

  6. Python pretty-printer for gdb - Verific Design Automation FAQ

    If gdb (GNU debugger) was compiled with Python support, it is possible to run Python scripts from within gdb. Below is an example of how to create a custom pretty-printer for Verific's …

  7. Pretty Printing (Debugging with GDB) - sourceware.org

    Pretty Printing (Debugging with GDB)GDB provides a mechanism to allow pretty-printing of values using Python code. It greatly simplifies the display of complex objects. This mechanism works …

  8. Debugging with GDB: Basic Python - eCosCentric

    Debugging with GDB: Basic Python23.2.2.1 Basic Python At startup, GDB overrides Python’s sys.stdout and sys.stderr to print using GDB ’s output-paging streams. A Python program …