tcc failed to compile this hello world program:
#include <stdio.h>
int main(void) {
printf("Hello, world!\n");
return 0;
}
The error code is:
tcc: file '/usr/lib/crt1.o' not found
tcc: file '/usr/lib/crti.o' not found
Are crt1.o and crti.o missing because of lack of linking, or missing of dependency of tcc?