So I'm using Codelite to code in C++ on a windows machine, and so my projects are debugged by the GNU gdb debugger. The debugger seems to get stuck at any
Code: Select all
std::cout << ....... ;
Code: Select all
cout << "Hello" << endl;
Single stepping until exit from function _ZNSolsEPFRSoS_E,\nwhich has no line number information.
Continuing...
..another 'Next' click on the debugger, and then this...:
Single stepping until exit from function _ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6_,\nwhich has no line number information.
Continuing...
Then the debugger just exits, without processing any of the other operations/expressions to follow. Any ideas?
P.S. I do have "using namespace std;" declared, and the code compiles and executes normally/completely when not in debug mode.