I'd like to try GDB pretty printers on CL 5.2 Win XP.
I checked "Enable GDB pretty printing", and added python 2.7 to the path.
I created a very simple test :
Code: Select all
#include <iostream>
#include <list>
#include <cstdlib>
int main(int argc, char **argv)
{
std::list<int> myList;
myList.push_back(7);
myList.push_back(3);
myList.push_back(1);
std::cout << "DONE";
return EXIT_SUCCESS;
}
EDIT : If I missed something, it could be cool to update http://codelite.org/LiteEditor/Debugging to add this information (a new pretty printing § for example).