User forums > Nightly builds

The 30 October 2011 build (7550) DEBUGGER BRANCH version is out.

<< < (2/4) > >>

ollydbg:

--- Quote from: oBFusCATed on November 14, 2011, 04:27:48 pm ---Ollydbg: Should be fixed in the branch, thank you for the report.

--- End quote ---
I can confirm this was fixed. Thank you very much for your work!!!

xunxun:
@oBFusCATed
btw, I found that cb debugger branch use gdb output command to print the value, but the output command in archergdb has some bugs, which can't show C variable length arrays and Fortran dynamic arrays, and the print command can be used normally.
Will the debugger branch replace output with print to show the value?
Thanks.

oBFusCATed:

--- Quote from: xunxun on November 25, 2011, 09:06:14 am ---@oBFusCATed
btw, I found that cb debugger branch use gdb output command to print the value, but the output command in archergdb has some bugs, which can't show C variable length arrays and Fortran dynamic arrays, and the print command can be used normally.

--- End quote ---
We do not support experimental gdbs, sorry.


--- Quote from: xunxun on November 25, 2011, 09:06:14 am ---Will the debugger branch replace output with print to show the value?

--- End quote ---
I don't see any reason to do it for now, but if the output command will be broken in the next official gdb, then we will change it.
For now you'll have to do it yourself and to see what break and what doesn't.
The file you're interested is gdb_commands.h in src/plugins/debuggergdb/

ollydbg:
@OBF
I found a tiny bug. If I have such code:

--- Code: ---int main()
{
    int size;
    size = 1;
    return 0;
}

--- End code ---
When debugging, if my mouse is hover the "size", and I press the CTRL, there is no value shown.
I guess this is because that "size" is a keyword of C++, right?
If I run command "p size" in the debugger gdb text control, it works.
Can we solve this?

oBFusCATed:
Yes, we should remove the new c++ stl keywords :)

I know about the issue, most of the time I get it with count :(

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version