Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 246 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 246 Bytes

uuid-gdb

GDB pretty-printers for uuid::Uuid

Installation

Add these lines to the ~/.gdbinit file:

python
import sys
sys.path.insert(0, '/path/to/uuid-gdb')
from uuid_printer import register_uuid_printer
register_uuid_printer()
end