Program exited with return code: -1
Posted: Thu Jun 28, 2012 2:40 am
I just installed CodeLite from SourceForge. I'm using Linux Mint 13 which is based on Ubuntu. I created a Hello World program to test it out:
It compiles with 0 errors, 0 warnings but when I try to run it I get this output:
mike
Code: Select all
#include <iostream>
using namespace std;
int main( int argc, char** argv )
{
cout << "Hello World!";
return 0;
}
help,Current working directory: /home/mike/.codelite/My Workspace/hello/Debug
Running program: /usr/bin/codelite_xterm './hello ' '/bin/sh -f /usr/bin/codelite_exec ./hello '
Program exited with return code: -1
mike