So i just installed code blocks on Lnux mint 19, but i have a problem. I ran the usual hello world program, but got "Process terminated with status -1". The "build" part works, but when i hit the "run" i get that error. I have g++ installed and set as default compiler. Any idea?
Tried everything i could find on the internet. Added the rep, tried installing from both the software center and from the terminal, same result.
int main()
{
cout << "Hello world!" << endl;
return 0;
}
Process terminated with status -1