Tiny C Compiler (TCC) designed by Fabrice Bellard. support for various OS such: unix, linux, windows.
features :
- Small – can compile and execute C code everywhere, for example on rescue disks (about 100KB for x86 TCC executable, including C preprocessor, C compiler, assembler and linker)
- Fast – tcc generates optimized x86 code. No byte code overhead. It compiles, assembles and links about 9 times faster than GCC.
- Any C dynamic library can be used directly. TCC is heading towards full ISOC99 compliance. TCC can of course compile itself.
- Includes an optional memory and bound checker. Bound checked code can be mixed freely with standard cod
- Compile and execute C source directly. No linking or assembly necessary. Full C preprocessor and GNU-like assembler included.
- C script is supported: just add ‘#!/usr/local/bin/tcc -run’ at the first line of your C source, and execute it directly from the command line.
- With libtcc, you can use TCC as a backend for dynamic code generation.
- Few dependencies. It includes its own hand-written lexer, and it is implemented using a recursive descent parser. Thus, building TCC requires few other libraries.
Download : disini
Filed under: C/C++, software review | Tagged: c compiler, compiler | Leave a Comment »



).
.