summaryrefslogtreecommitdiff
path: root/lang/pcc
AgeCommit message (Collapse)AuthorFilesLines
2012-10-02Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2011-10-31allow this to build on NetBSD-*-x86_64reed1-1/+2
I didn't check the others. We should make consider just removing all these ONLY_FOR_PLATFORM restrictions and just make the description or a +DISPLAY message clear on what is supported. cVS: ----------------------------------------------------------------------
2011-04-10Update pcc to 1.0.0.bsiegert2-8/+9
This is the beta of the first release of pcc since almost forever. The main architectures supported are i386 and amd64, other targets may have less functionality. Update reviewed by Alistair G. Crooks.
2010-03-17Add platform list based on configure.ac.joerg1-1/+10
2009-08-01USE_TOOLS+=gmake, same as pcc-current, for the same reason. Fixes PR 38964.dholland1-1/+3
2009-04-30fix ftp link.zafer1-2/+2
2009-04-30DESTDIR ready.hasso1-1/+3
2008-02-09Update pcc to 0.9.9.reed3-13/+13
Sorry no change log. On January 27, ragge bumped the version with commit message: "Pcc now supports all C99 language constructs (I hope), so wrap to 0.9.9." This also includes the new manpages. (These are a work in progress -- please send me your improvements.) For pkgsrc: - changed download sites - changed homepage - INSTALLATION_DIRS not needed.
2007-11-03Added MAKE_JOBS_SAFE as suggested in PR 37242.rillig1-1/+2
2007-10-10Add USE_TOOLS+= lex yacc.reed1-1/+2
This is for PR #37095 noticed on Linux.
2007-09-21Revert my last change with pcc.reed2-7/+10
Instead use the older tarball that does have the version as part of the name. It has same checksum. It is really beta but at least the file name exists tomorrow. We will wait until developer releases a real version. Sorry about going back in time in versioning in pkgsrc -- hopefully nobody hit this in the past few minutes.
2007-09-21Update to version 0.9.8.070920.reed3-25/+20
This fixes PR # 37014 Also take MAINTAINERship. Update DESCR to not be first person. Note: man pages not installed as they still need a little cleanup.
2007-09-15Add INSTALLATION_DIRSagc1-1/+3
2007-09-15Some people are soooooooo pickyagc1-1/+4
Populate the PLIST
2007-09-15Initial import of ragge's version of pcc, version 0.9.8. This is theagc4-0/+43
latest version of the portable C compiler. The 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. The compiler is conceptually structured in two parts; pass1 which is language-dependent, does parsing, typechecking and build trees, and pass2 which is mostly language-independent. About 50% of the frontend code and 80% of the backend code has been rewritten. Most stuff is written by me, with the exception of the data-flow analysis part and the SSA conversion code which is written by Peter A Jonsson, and the Mips port that were written as part of a project by undergraduate students at LTU. As discussed at great length at EuroBSDcon 2007.