freebsd-ports/lang/tcc/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

20 lines
847 B
Plaintext

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.