Hi,
I am using xcode to compile and debug my software. It's really comfortable to see variables with their contents in the debugger window, but;
let's say that I have a pointer double * P that points to an array of n doubles.
In the debugger window, when I click the small triangle next to P, I can only see the first item of this array, is there a easy/fast way to see the whole array.
In fact I wonder if there is a graphical way to do " (gdb) p P@n "
I have structures in arrays in structures with long names, so writing by hand in gdb console makes me lose time. It'll be very cool if I can do this with one click
Thanks
I am using xcode to compile and debug my software. It's really comfortable to see variables with their contents in the debugger window, but;
let's say that I have a pointer double * P that points to an array of n doubles.
In the debugger window, when I click the small triangle next to P, I can only see the first item of this array, is there a easy/fast way to see the whole array.
In fact I wonder if there is a graphical way to do " (gdb) p P@n "
I have structures in arrays in structures with long names, so writing by hand in gdb console makes me lose time. It'll be very cool if I can do this with one click
Thanks