Skip to content
This repository has been archived by the owner on Mar 27, 2024. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 429 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 429 Bytes

libcxx-pretty-printers

GDB Pretty Printers for libc++ of Clang/LLVM.

Example ~/.gdbinit

$ cat ~/.gdbinit
set print pretty on
set print object on

# libc++ pretty printers
# See: https://github.com/koutheir/libcxx-pretty-printers
python
import sys
sys.path.insert(0, '/home/koutheir/libcxx-pretty-printers/src')
from libcxx.v1.printers import register_libcxx_printers
register_libcxx_printers(None)
end