Page 1 of 1

Some GDB Settings do not save after exit

Posted: Sat Mar 01, 2014 9:24 am
by dsisco11
The "Enable pretty printing" and "Auto expand items under the mouse cursor" options do not save after I enable them under Settings -> GDB Settings and close CodeLite.
I must re-enable them each time I startup CodeLite.

Running: Windows 7 64-bit.
Self Compiled?: Nope, downloaded it from the CodeLite website.
Version: CodeLite 5.4

Re: Some GDB Settings do not save after exit

Posted: Sat Mar 01, 2014 11:57 am
by eranif
This bug was introduced in codelite 5.4 and already got fixed in git head a month ago (or more).
To workaround this:
- codelite codelite
- open the file CODELITE_INSTALL_DIR/config/debuggers.xml.default

Search for the strings:

Code: Select all

<Debuggers Version="5.11">
and change it to:

Code: Select all

<Debuggers Version="5.4">
Start codelite
Eran

Re: Some GDB Settings do not save after exit

Posted: Sun Mar 02, 2014 4:09 am
by dsisco11
Thank you, this fixed the problem.