About 279,000 results
Open links in new tab
  1. 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 …

  2. Creating a GDB pretty printer from scratch | Heshan Padmasiri

    Jul 27, 2024 · Here the important part is the enable-pretty-printing setupCommand. With this, if you have configured your gdb config to source your pretty printer vs-code will use that to show …

  3. Creating custom pretty printers in GDB - Medium

    Mar 21, 2023 · Pretty printers in GSD allows you to print your custom types in a user-readable way. This articale shows you how to create such printers via GDB's Python API.

  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. Debugging with pretty printers in GDB – part 3 - Undo

    In this tutorial, Software Architect Mark Williamson follows on from our previous tutorial on advanced pretty-printers for GDB, showing how to configure and control the behaviour of your …

  6. 4.5. Python Pretty-Printers | Developer Guide | Red Hat ...

    To address this, the Red Hat Enterprise Linux 6 version of GDB is now compatible with Python pretty-printers. This allows the retrieval of more meaningful debugging data by leaving the …

  7. Pretty Printing API (Debugging with ROCGDB) - AMD

    Pretty Printing API (Debugging with ROCGDB)Indicate that the object being printed is “string-like”. If the printer’s to_string method returns a Python string of some kind, then ROCGDB will call …

  8. Pretty Printing API (Debugging with GDB) - sourceware.org

    Pretty Printing API (Debugging with GDB)This method must return an object conforming to the Python iterator protocol. Each item returned by the iterator must be a tuple holding two …