Some GDB Settings do not save after exit

Discussion about CodeLite development process and patches
dsisco11
CodeLite Curious
Posts: 8
Joined: Sat Mar 01, 2014 7:46 am
Genuine User: Yes
IDE Question: C++
Contact:

Some GDB Settings do not save after exit

Post 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
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Some GDB Settings do not save after exit

Post 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
Make sure you have read the HOW TO POST thread
dsisco11
CodeLite Curious
Posts: 8
Joined: Sat Mar 01, 2014 7:46 am
Genuine User: Yes
IDE Question: C++
Contact:

Re: Some GDB Settings do not save after exit

Post by dsisco11 »

Thank you, this fixed the problem.
Post Reply