I have tried: Going into debug settings and having it load all breakpoints after main and also automatically stopping at main. Doesn't help.
My config is the following:
OS: FreeBSD-9.0-RELEASE-i386
Machine: MacBook Pro running paralell's
Gnome-2x
CodeLite was built from source from the ports tree.
Please advise.
Thanks,
Jeff
Code: Select all
#include <iostream>
int main(int argc, char **argv)
{
char c;
printf("hello world\n");
std::cout << "press any key to continue..." << std::endl;
c = getchar();
return 0;
}