News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

Variable names in Watches window

Started by Krause, January 25, 2023, 03:35:14 PM

Previous topic - Next topic

Krause

Sometimes variables in the Watches window are shown like this:
i and sometimes as expected: i
And also the debugger log has additional characters before the address:Setting breakpoints
Breakpoint 2 at 0x1400019f2: file c:\dev\Test\GUIFrame.cpp, line 46.

I'm using GDB 10.2/Win11.

What is going wrong?

Thanks in advance
K.

Miguel Gimenez

#1
Looks like GDB is generating ANSI escape sequences,

Adding
set style enabled off
to GDB initialization commands (in Settings -> Debugger -> Default) should fix the issue.

EDIT: I have just created a ticket for this.

Krause