I want to print the full length of a C-string in GDB. By default it's being abbreviated, how do I force GDB to print the whole string?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
Set a limit on how many elements of an array GDB will print. If GDB is printing a large array, it stops printing after it has printed the number of elements set by the
|
||||
|
|
|
As long as your program's in a sane state, you can also |
|||||||||||
|
|
Just to complete it:
You must give a length, but may change the representation of that string:
This may be useful if you want to debug by their values |
|||
|
|
|
There is a third option: the x command, which allows you to set a different limit for the specific command instead of changing a global setting. To print the first 300 characters of a string you can use (gdb) x/300sb stmt.c_str() 0x9cd948: "SELECT article.r"... 0x9cd958: "owid FROM articl"... .. |
|||
|
|