| Commit History - (may be incomplete: see CVSWeb link above for full details) |
| Date | By | Description |
28 Jan 2012 20:30:02
0.9.13
|
miwi  |
- Update to 0.9.13
PR: 164297
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org> (maintainer) |
13 Aug 2011 09:03:38
0.9.12_1
|
crees  |
Change +++ path too-- if one has a /tmp/firm_machine.c for whatever reason
patching fails.
PR: ports/159627
Submitted by: rdivacky
Approved by: maintainer (implicit) |
13 Aug 2011 08:16:56
0.9.12_1
|
crees  |
Patch now applies properly -- path corrected.
Submitted by: rdivacky |
13 Aug 2011 06:41:17
0.9.12_1
|
crees  |
Fix on amd64 -- cputype is called x86_64 here.
PR: ports/159627
Submitted by: rdivacky
Approved by: Armin Pirkovitsch <armin@frozen-zone.org> (maintainer) |
12 Aug 2011 17:13:55
0.9.12
|
crees  |
- Update devel/libfirm to 1.19.1
- Update lang/cparser to 0.9.12 and bump LIB_DEPENDS for libfirm
PR: ports/159627
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org> (maintainer) |
03 Jul 2011 13:45:36
0.9.11
|
ohauer  |
- remove MD5 |
25 Jul 2010 15:13:41
0.9.11
|
decke  |
- Update to 0.9.11
- Add LICENSE
- Pass maintainership to submitter (via IRC)
PR: ports/148723
Submitted by: Armin Pirkovitsch <armin at frozen-zone dot org>
Approved by: beat (co-mentor) |
06 Jun 2010 01:09:30
0.9.8
|
linimon  |
Reset christoph.mallon@gmx.de due to maintainer-timeouts and no response
to email.
Hat: portmgr |
15 Feb 2009 13:22:27
0.9.8
|
miwi  |
- Update to 0.9.8
- Use SF macro
Submitted by: Christoph Mallon (maintainer via irc) |
02 Dec 2008 01:24:52
0.9.7
|
wxs  |
- Update to 0.9.7
- Switch to MASTER_SITE_SOURCEFORGE
- Install man pages
- Fixup pkg-descr typos
PR: ports/129343
Submitted by: Christoph Mallon <christoph.mallon@gmx.de> (maintainer) |
24 Nov 2008 09:33:54
0.9.6
|
miwi  |
cparser is a C compiler, which can parse C89 and C99 as well as many GCC and
some MSVC extensions. It also provides many useful analyses for warnings. It
uses libFIRM, which provides a SSA-based intermediate representation in form of
explicit dependency graphs, for optimization and code generation. Parsing is
done with a handwritten recursive descent parser. The AST representation is
straightforward, so it can be used for other purposes than code generation.
* fast recursive descent parser, parses C89 and C99
* handles most GCC extensions, f.e. __attribute__, inline assembler,
computed goto, statement expressions
* handles some MSVC extensions (like declspec)
* provides many useful warnings
* format string checker for char and wchar_t
* unreachable code analysis
* missing return statement check, which pinpoints exact location(s) (Only the first 15 lines of the commit message are shown above ) |