Here it is!  come and get it!  (In particular, Volker and Zane ;) 

http://fabrice.bellard.free.fr/tcc/

http://fabrice.bellard.free.fr/tcc/tcc-doc.html
"TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike other C 
compilers, it is meant to be self-relying: you do not need an external 
assembler or linker because TCC does that for you. 
[...]
TCC can also be used to make C scripts, i.e. pieces of C source that you run 
as a Perl or Python script. Compilation is so fast that your script will be 
as fast as if it was an executable. 
[...]
Scripting: 


TCC can be invoked from scripts, just as shell scripts. You just need to add 
#!/usr/local/bin/tcc -run at the start of your C source: 

#!/usr/local/bin/tcc -run
#include <stdio.h>

int main() 
{
    printf("Hello World\n");
    return 0;
}
"

Not bad, eh?

Wesley Parish

Of course, that's not the only minimal C compiler available - romcc's an 
interesting beast if you want to write C for ROM - compiled it's only 260 or 
so KB; then you have rmcc - the Real Man's C Compiler - Error flags?  What 
Error Flags?  The Real Programmer debugs from reading the code itself!
-- 
Clinersterton beademung, with all of love - RIP James Blish
-----
Mau e ki, he aha te mea nui?
You ask, what is the most important thing?
Maku e ki, he tangata, he tangata, he tangata.
I reply, it is people, it is people, it is people.

Reply via email to