Author Topic: debugger tooptip is gray in rev12481  (Read 4893 times)

Online ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5906
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
debugger tooptip is gray in rev12481
« on: July 02, 2021, 03:22:01 pm »
Here is the screen shot in attachment.

and I see the debugger log is OK:
Code
[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.

Offline oBFusCATed

  • Developer
  • Lives here!
  • *****
  • Posts: 13413
    • Travis build status
Re: debugger tooptip is gray in rev12481
« Reply #1 on: July 02, 2021, 03:33:13 pm »
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!]

Offline gd_on

  • Lives here!
  • ****
  • Posts: 795
Re: debugger tooptip is gray in rev12481
« Reply #2 on: July 02, 2021, 05:09:42 pm »
look at https://forums.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.
« Last Edit: July 02, 2021, 05:12:37 pm by gd_on »
Windows 11 64 bits (23H2), svn C::B (last version or almost!), wxWidgets 3.2.4 (tests with 3.3), Msys2 Compilers 13.2.0, 64 bits (seh, posix : gcc, g++ and gfortran in C:\msys64\mingw64) or 32 bits (dwarf2, posix  in C:\msys64\mingw32).

Online ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5906
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: debugger tooptip is gray in rev12481
« Reply #3 on: July 03, 2021, 12:52:01 pm »
look at https://forums.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.