FreshPorts -- The Place For Ports notbug Sun, 27 May 2012 9:34 AM BST
Port details
cparser 0.9.13 lang on this many watch lists=0 search for ports that depend on this port
A C99 compiler using libFIRM as backend
Maintained by: armin@frozen-zone.org search for ports maintained by this maintainer
Port Added: 24 Nov 2008 09:34:38
Also Listed In: devel
License: GPLv2


cparser is a C compiler, which can parse C90 and C99 as well as many GCC and
some MSVC extensions.  It also provides many useful analyses for warnings.  It
uses libFIRM, which provides an 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 C90 and C99
* handles most GCC extensions, e.g. __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)
  * write-only/-self variables detection
  * missing and redundant forward declarations
  * most warnings switches, which are available for GCC
* provides concise messages in case of error, for example when encountering
  misspelled typenames
* compiler driver compatible with GCC (-fxxx, -Wxxx, -M, ...)
* uses libFIRM for optimization and code generation (devel/libfirm)

WWW: http://www.libfirm.org
CVSWeb : Sources : Main Web Site : Distfiles Availability : PortsMon
NOTE: FreshPorts displays only required dependencies information. Optional dependencies are not covered.
Required To Build: devel/gmake
Required Libraries: devel/libfirm
There are no ports dependent upon this port

To install the port: cd /usr/ports/lang/cparser/ && make install clean
To add the package: pkg_add -r cparser


Configuration Options
     No options to configure

Master Sites:
http://heanet.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://sunet.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://iweb.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://switch.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://surfnet.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://kent.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://freefr.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://voxel.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://jaist.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://osdn.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://nchc.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://ncu.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://transact.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://softlayer.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://internode.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://ufpr.dl.sourceforge.net/project/cparser/cparser/0.9.13/
http://waix.dl.sourceforge.net/project/cparser/cparser/0.9.13/
ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/

Number of commits found: 11

Commit History - (may be incomplete: see CVSWeb link above for full details)
DateByDescription
28 Jan 2012 20:30:02
Original commit files touched by this commit  0.9.13
miwi search for other commits by this committer
- Update to 0.9.13

PR:             164297
Submitted by:   Armin Pirkovitsch <armin@frozen-zone.org> (maintainer)
13 Aug 2011 09:03:38
Original commit files touched by this commit  0.9.12_1
crees search for other commits by this committer
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
Original commit files touched by this commit  0.9.12_1
crees search for other commits by this committer
Patch now applies properly -- path corrected.

Submitted by:   rdivacky
13 Aug 2011 06:41:17
Original commit files touched by this commit  0.9.12_1
crees search for other commits by this committer
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
Original commit files touched by this commit  0.9.12
crees search for other commits by this committer
- 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
Original commit files touched by this commit  0.9.11
ohauer search for other commits by this committer
- remove MD5
25 Jul 2010 15:13:41
Original commit files touched by this commit  0.9.11
decke search for other commits by this committer
- 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
Original commit files touched by this commit  0.9.8
linimon search for other commits by this committer
Reset christoph.mallon@gmx.de due to maintainer-timeouts and no response
to email.

Hat:            portmgr
15 Feb 2009 13:22:27
Original commit files touched by this commit  0.9.8
miwi search for other commits by this committer
- Update to 0.9.8
- Use SF macro

Submitted by:   Christoph Mallon (maintainer via irc)
02 Dec 2008 01:24:52
Original commit files touched by this commit  0.9.7
wxs search for other commits by this committer
- 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
Original commit files touched by this commit  0.9.6
miwi search for other commits by this committer
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 View all of this commit message)

Number of commits found: 11

Login
User Login
Create account

Servers and bandwidth provided by
New York Internet
SuperNews

Search
Enter Keywords:
 
more...

Latest Vulnerabilities
haproxyMay 24
foswikiMay 21
inspircd*May 21
inspircd12*May 21
sympaMay 21
sympa5May 21
libxml2May 18
pidgin-otrMay 16
sudoMay 16
chromiumMay 15
chromiumMay 15
pivotx*May 14
socatMay 14
libpurpleMay 12
php5May 12

12 vulnerabilities affecting 17 ports have been reported in the past 14 days

* - modified, not new

All vulnerabilities


Ports
Home
Categories
Deleted ports
Sanity Test Failures
Newsfeeds


Statistics
Graphs
NEW Graphs (Javascript)
Traffic

Calculated hourly:
Port count 23675
Broken 193
Deprecated 147
Ignore 736
Forbidden 3
Restricted 328
No CDROM 110
Vulnerable 0
Expired 44
Set to expire 188
Interactive 54
new 24 hours 5
new 48 hours19
new 7 days62
new fortnight185
new month256

This site
What is FreshPorts?
About the Authors
FAQ
How big is it?
The latest upgrade!
Privacy
Forums
Blog
Contact

Servers and bandwidth provided by
New York Internet
SuperNews
Valid HTML, CSS, and RSS.
Copyright © 2000-2012 DVL Software Limited. All rights reserved.
This page created in 0.147 seconds.