I use boost::mpl::string<...>
types extensively... enough that it would really help with debugging to have the types pretty-printed in gdb
.
So... instead of gdb
showing the individual (multicharacter literal) components like it currently does ...
boost::mpl::string<1668248165, 778856802, 778858343, ..., ..., 0, 0, 0, 0, 0, 0>
It would display the equivalent string value instead ...
boost::mpl::string<"The way out is through">
I've seen gdb
macros and python scripts for pretty-printing STL containers in gdb
, but I couldn't find one for pretty-printing boost::mpl
strings. Can anyone help with this?
UPDATE: I've added a +100 bounty... I'm looking for a solution that utilizes the latest GDB support for pretty-printing via python (as described here for STL containers).
Here is my solution utilizing Boost-Pretty-Printer (https://github.com/ruediger/Boost-Pretty-Printer/wiki):
File mpl_printers.py:
File register_printers.gdb:
(You might choose different directories)
Test:
gdb Test -ex 'b main' -ex 'r' -ex 'p s' -ex 'c' -ex 'q'
$1 = (boost::mpl::string) hello world