Created
March 6, 2013 02:05
-
-
Save ryaninhust/5096160 to your computer and use it in GitHub Desktop.
GDB 配置
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set print pretty on | |
set print object on | |
set print static-members on | |
set print vtbl on | |
set print demangle on | |
set demangle-style gnu-v3 | |
set print sevenbit-strings off | |
python | |
import sys | |
sys.path.insert(0, '/home/ryanhust/ryanlib/python') | |
from libstdcxx.v6.printers import register_libstdcxx_printers | |
register_libstdcxx_printers (None) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment