GDB Pretty Printers for libc++ of Clang/LLVM.
Go to file
Koutheir Attouchi e348ae4f90
Merge pull request #18 from edobez/smart_ptr_printer
Added possibility to expand content of Unique and Shared pointers
2023-06-05 10:04:06 -04:00
src Added possibility to expand content of Unique and Shared pointers 2023-06-05 15:10:07 +02:00
.gitignore Initial commit. 2013-12-09 13:31:24 +01:00
LICENSE Create LICENSE 2018-07-25 21:08:56 +02:00
README.md Updated documentation 2023-03-30 22:08:16 -04:00

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