gcc segmentation fault on Ubuntu 12.04
- by Yuval F
I am trying to compile a C program on Ubuntu precise 12.04.
Here's the program:
#include <stdio.h>
int main(int argc, char** argv) {
printf("Hello World!");
return 0;
}
My gcc version is 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5).
Initially it did not find cc1 so I added a soft link.
Now I get this message when I try to compile:
gcc:…