Como ejemplo:
hsmyers@ubuntu:~/c_dev$ cat hello.c
#include <stdio.h>
int main(int argc,char **argv) {
printf("Hello World!\n");
return 0;
}
hsmyers@ubuntu:~/c_dev$ gcc -c -o hello.o hello.c
In file included from /usr/include/stdio.h:28:0,
from hello.c:1:
/usr/include/features.h:323:26: fatal error: bits/predefs.h: No such file or directory
compilation terminated.
Supongo que en algún lugar del camino después de intentar corregir el mensaje de error:
/ usr / bin / ld: no se puede encontrar crt1.o: no existe tal archivo o directorio
He estropeado las cosas por completo. ¿Alguien podría aconsejarme?