News:

When registered with our forums, feel free to send a "here I am" post here to differ human beings from SPAM bots.

Main Menu

debugger tooptip is gray in rev12481

Started by ollydbg, July 02, 2021, 03:22:01 PM

Previous topic - Next topic

ollydbg

Here is the screen shot in attachment.

and I see the debugger log is OK:

[debug]> output &baudRate
[debug](int *) 0x31f67c>>>>>>cb_gdb:
[debug]> output baudRate
[debug]9600>>>>>>cb_gdb:
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.

oBFusCATed

Already discussed and logged as an issue.
(most of the time I ignore long posts)
[strangers don't send me private messages, I'll ignore them; post a topic in the forum, but first read the rules!]

gd_on

#2
look at https://forums.next.codeblocks.org/index.php/topic,23806.msg167120.html#msg167120
if you are on Windows 64 / MinGW 64 (may be also 32 but it's not sure), a patch is possible in ticket # 1100. On other OS, it's not sufficient apparently.
Windows 11 64 bits (25H2), svn C::B (last version or almost!), wxWidgets 3.3.2, Msys2 Compilers 16.1.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

ollydbg

Quote from: gd_on on July 02, 2021, 05:09:42 PM
look at https://forums.next.codeblocks.org/index.php/topic,23806.msg167120.html#msg167120
if you are on Windows 64 / MinGW 64 (may be also 32 but it's not sure), a patch is possible in ticket # 1100. On other OS, it's not sufficient apparently.

Hi, thanks for the help.

I'm using 64bit Windows and latest svn version, and with the patch in ticket 1100, I see this issue is fixed.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.