mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
1721ad913f
PR: ports/137258 Submitted by: Denny Lin <dennylin93@cnmc32.hs.ntnu.edu.tw> Approved by: maintainer timeout (obrien; 1 month) Feature safe: yes
11 lines
524 B
Plaintext
11 lines
524 B
Plaintext
This compiler is based on the original Portable C Compiler by S. C. Johnson,
|
|
written in the late 70's. Even though much of the compiler has been
|
|
rewritten, some of the basics still remain.
|
|
|
|
The intention is to write a C99 compiler while still keeping it small, simple,
|
|
fast and understandable. I think of it as if it shall be able to compile and
|
|
run on PDP11 (even if it may not happen in reality). But with this in mind it
|
|
becomes important to think twice about what algorithms are used.
|
|
|
|
WWW: http://pcc.ludd.ltu.se/
|