I can't seem to be able to compile even simple C programs anymore; I can't seem to be able to pinpoint what changed from yesterday, when all seemed to be fine.
I'm using gcc 5.2.1.
Compiling this program (or any other program)
#include <stdio.h> int main(int argc, char *argv[]) { printf("Hello world!\n"); return 0; } gives me this error:
<built-in>: internal compiler error: Bus error Please submit a full bug report, with preprocessed source if appropriate. See <file:///usr/share/doc/gcc-5/README.Bugs> for instructions. I'm at loss; what I found while searching on the internet are posts from a few years back detailing bugs that have been solved, or bus error generated from a C program for incorrect use of memory.
I've tried purging and reinstalling gcc with apt-get (I'm using Ubuntu), but nothing changed.
