Displaying C++ STL Data Contents During GDB Debugging
In a relatively underperforming Linux system, using gdb to print a C++ list does not yield effective display of data members: The gdb wiki mentions: https://sourceware.org/gdb/wiki/STLSupport This means that starting from gdb 7.0, support for pretty-printers implemented in Python has been added. There is an implementation of pretty-printers in libstdc++, and some distributions have integrated … Read more