freebsd-ports/lang/tcc/pkg-descr
Carlos J. Puga Medina 01e6eab27d - Add LICENSE_FILE
- Add PORTSCOUT to ignore invalid version
- Update WWW in pkg-descr
- Bump PORTREVISION

Reviewed by:	feld (mentor)
Approved by:	feld (mentor)
Differential Revision:	D7292
2016-07-26 16:34:55 +00:00

21 lines
887 B
Text

Tiny C Compiler is perhaps the smallest ANSI C compiler, by Fabrice Bellard.
- It is small: you can compile and execute C code everywhere, for example
on rescue disks;
- It is fast! TCC generates optimized x86 code. No byte code overhead.
Compile, assemble, and link about 7 times faster than 'gcc -O0';
- Any C dynamic library can be used directly. TCC is heading towards
full ISO C99 compliance. TCC can of course compile itself;
- It is safe! TCC includes optional memory and bound checker. Bound
checked code can be mixed freely with standard code;
- Compile and execute C source directly. No linking or assembly is
necessary. Full C preprocessor included;
- C script supported: just add '#!/bin/env tcc -run' at the first line
of your C source, and execute it directly from the command line.
WWW: https://github.com/TinyCC/tinycc/