mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
fb16dfecae
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)
14 lines
612 B
Plaintext
14 lines
612 B
Plaintext
Tool to compile and run C programs like a shell script.
|
|
|
|
First of all, this is not the same as tcc. TCC is a compiler. TCC will perform
|
|
its own set of optimizations, just as GCC will perform its own and Clang will
|
|
perform its own. The purpose of this script is to give a simple front-end to a
|
|
compiler.
|
|
|
|
Whether it's GCC, Clang, or something else entirely, one can get to choose
|
|
their compiler. It's simply satisfying to type c hello.c and see it run
|
|
instantly.
|
|
|
|
C is fast. Being able to write a small, fast, and portable C "script" is great.
|
|
One can pass around a C "script" just like s/he would a BASH script.
|