README 761 B

123456789101112131415161718192021222324
  1. Features:
  2. --------
  3. - SMALL! You can compile and execute C code everywhere, for example on
  4. rescue disks.
  5. - FAST! tcc generates optimized x86 code. No byte code
  6. overhead. Compile, assemble and link about 7 times faster than 'gcc
  7. -O0'.
  8. - UNLIMITED! Any C dynamic library can be used directly. TCC is
  9. heading torward full ISOC99 compliance. TCC can of course compile
  10. itself.
  11. - SAFE! tcc includes an optional memory and bound checker. Bound
  12. checked code can be mixed freely with standard code.
  13. - Compile and execute C source directly. No linking or assembly
  14. necessary. Full C preprocessor included.
  15. - C script supported : just add '#!/usr/local/bin/tcc -run' at the first
  16. line of your C source, and execute it directly from the command
  17. line.