Programming and Scripting :: tcc / c library problem
thank you for the information, clacker.
Using the gcc1-with-libs extension in both .dsl and .unc format, I have not been able to compile my first C program.
Here's the program:
[File: hello/hello.c]
#include <stdio.h>
int main()
{
printf("Hello World\n");
return (0);
}
I've tried a bunch of different options at the command line, but I haven't found one that works. Maybe my program has been improperly written?
original here.