README 924 B

1234567891011121314151617181920212223242526272829
  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.
  18. By default this slackbuild will will compile with tcc if its installed
  19. otherwise it will use gcc, to specify another compiler use:
  20. CC="cc" ./tinycc.SlackBuild