tags:

views:

1338

answers:

3

How can I print wstring in gdb?

+1  A: 

Suppose you've got a std::wstring str. The following should work in gdb:

call printf("%ls", str._M_data())

(The -l option in printf makes it a long string, and I believe you need the "call" statement because the ordinary gdb printf doesn't like that option.)

Jesse Beder
A: 

I did some research, and this is gdb PR716, PR1998, PR2264. Apparently this is an often-requested feature that is not yet implemented.

Does anyone have a workaround?

sanxiyn
+2  A: 

call printf %ls only works sometimes, but to get it to work at all in gdb 6.3 you need the void cast and linefeed \n shown here:

call (void)printf("\"%ls\"\n",str.c_str())

here is a more reliable command you can put in your .gdbinit that also shows non-ASCII code points:

define wc_print
echo "
set $c = (wchar_t*)$arg0
while ( *$c )
  if ( *$c > 0x7f )
    printf "[%x]", *$c
  else
    printf "%c", *$c
  end
  set $c++
end
echo "\n
end

just enter wc (short for wc_print) with either a std::wstring or wchar_t*.

More detail at http://www.firstobject.com/wchar_t-gdb.htm

Ben Bryant