Debugger not working
-
- CodeLite Guru
- Posts: 352
- Joined: Sun Nov 29, 2009 7:36 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Debugger not working
I have trouble getting debugger work.
If I start debugger and step in code it works fine. But when I add a watch as wxString the problem starts.
The watch is not added to watch panel but also Trying to step into code stops working.
I don't know what to do
Help!
If I start debugger and step in code it works fine. But when I add a watch as wxString the problem starts.
The watch is not added to watch panel but also Trying to step into code stops working.
I don't know what to do
Help!
CodeLite 15.x
CodeLite is awesome, I just Love it!
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Debugger not working
Make sure you have read the HOW TO POST thread
-
- CodeLite Guru
- Posts: 352
- Joined: Sun Nov 29, 2009 7:36 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Debugger not working
Sorry, here is the log
You do not have the required permissions to view the files attached to this post.
CodeLite 15.x
CodeLite is awesome, I just Love it!
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Debugger not working
Try deleting the 'Pre Defined Types' for wxString from the debugger settings dialog. from "settings -> debugger settings"
codelite should be using the python pretty printers for wxString so wxString should be very much readable for you
Eran
codelite should be using the python pretty printers for wxString so wxString should be very much readable for you
Eran
Make sure you have read the HOW TO POST thread
-
- CodeLite Guru
- Posts: 352
- Joined: Sun Nov 29, 2009 7:36 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Debugger not working
That is it!eranif wrote:Try deleting the 'Pre Defined Types' for wxString from the debugger settings dialog. from "settings -> debugger settings"
codelite should be using the python pretty printers for wxString so wxString should be very much readable for you
Eran
Thanks and sorry for my dummy post
CodeLite 15.x
CodeLite is awesome, I just Love it!
-
- CodeLite Guru
- Posts: 352
- Joined: Sun Nov 29, 2009 7:36 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Debugger not working
std:string and char* behaves the same. Should I delete them?eranif wrote:Try deleting the 'Pre Defined Types' for wxString from the debugger settings dialog. from "settings -> debugger settings"
codelite should be using the python pretty printers for wxString so wxString should be very much readable for you
Eran
After Installing fresh 13.04 Raring I copied the config folder of CodeLite from 12.04. Is that supposed to be the cause?
CodeLite 15.x
CodeLite is awesome, I just Love it!
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: Debugger not working
close codelite, rename ~/.codelite and try it again.
If it still fails - It seems to be a gdb problem
You could also try this:
delete the entire content of "settings -> debugger settings -> startup commands"
If the problem persists - then its a gdb problem
Eran
If it still fails - It seems to be a gdb problem
You could also try this:
delete the entire content of "settings -> debugger settings -> startup commands"
If the problem persists - then its a gdb problem
Eran
Make sure you have read the HOW TO POST thread