Output window empty
Posted: Thu Nov 10, 2011 12:45 am
I have not used Codelite for some time, since the mid-4000s, so maybe I missed something. I have recently ugpraded to 5243, and today to 5245. I'm finding no output is being captured or displayed while running. For example, this simple auto-generated program for a new project does not show its printf() content to the output window if a breakpoint is set on return 0;
Ubuntu 10.04, Intel Pentium Dual-Core laptop, 2GB memory, GNU's g++ 4.5.3 20110103 (prerelease):
I get output under Build, Errors and the Debug's Output window generates content. But the cursor just flashes in the upper-left of the Output window with no program content being displayed. Running the same from the command prompt gives "hello world".
Is there a setting I'm missing somewhere? Or a new feature?
Note: I've also noticed on 5243 and 5245 (at least), that it doesn't have the "Build completed. Please run 'sudo make install'" message.
Ubuntu 10.04, Intel Pentium Dual-Core laptop, 2GB memory, GNU's g++ 4.5.3 20110103 (prerelease):
Code: Select all
#include <stdio.h>
int main(int argc, char **argv)
{
printf("hello world\n");
return 0;
}
Is there a setting I'm missing somewhere? Or a new feature?
Note: I've also noticed on 5243 and 5245 (at least), that it doesn't have the "Build completed. Please run 'sudo make install'" message.