0

I'm trying out the CodeLite IDE for c++ programming.

Everything is OK except the debugger when I'm using the debugger to see what inside of a string, vector or even an object I can't see the value inside them.

Example

Please help me with that.

Btw, I'm using minGW compiler.

mike23
  • 51
  • 1
  • 11

1 Answers1

0

Make sure you have the debugger pretty printing ON. This can be checked from Settings -> GDB Settings -> GNU gdb debugger -> Display and check the option:

Enable GDB Pretty Printing

If its already ON, then you are using a debugger without python support.

Attaching a screenshots to show how it should be looking.

enter image description here

enter image description here

HTH, Eran

Eran
  • 2,310
  • 1
  • 13
  • 13
  • Thank you, Eran, for the answer, that option is already ON for me, what do you mean by python support? How do I get it? – mike23 Aug 31 '19 at 21:50
  • The pretty printing is coming from the debugger not from the IDE. Which debugger version do you use? – Eran Sep 01 '19 at 19:46