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

koutheir/libcxx-pretty-printers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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