diff options
author | sperber <sperber@FreeBSD.org> | 2013-05-01 01:48:36 +0800 |
---|---|---|
committer | sperber <sperber@FreeBSD.org> | 2013-05-01 01:48:36 +0800 |
commit | fe05d70f13561e0b3bf8940c337ff902fda5c071 (patch) | |
tree | 66925d2e09fc04a4edae9213275fffd71f3a0bfa /lang/cparser/pkg-descr | |
parent | 38a6e456e5f04fc2cd1b5320a3411df223658097 (diff) | |
download | freebsd-ports-gnome-fe05d70f13561e0b3bf8940c337ff902fda5c071.tar.gz freebsd-ports-gnome-fe05d70f13561e0b3bf8940c337ff902fda5c071.tar.zst freebsd-ports-gnome-fe05d70f13561e0b3bf8940c337ff902fda5c071.zip |
- Update to 0.9.14
- Switch to OptionsNG
- Add Options for DEBUG
- Update pkg-descr and WWW:
- Trim Makefile headers
- Add USES= pkgconfig
- Remove shlib versions
- Update MAINTAINER to my FreeBSD address
PR: ports/175920
Submitted by: Po-Chien Lin <linpc _AT_ cs.nctu.edu.tw>
Approved by: beat (mentor)
Diffstat (limited to 'lang/cparser/pkg-descr')
-rw-r--r-- | lang/cparser/pkg-descr | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/lang/cparser/pkg-descr b/lang/cparser/pkg-descr index 6f81c2800442..5373a5213e27 100644 --- a/lang/cparser/pkg-descr +++ b/lang/cparser/pkg-descr @@ -1,9 +1,8 @@ -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. +cparser is a recursive descent C99 parser written in C99. It contains lexer, +parser, constructs an AST and does semantic analysis. It is currently used as +a frontend to the libFirm intermediate representation, but can be used +independently. cparser is able to bootstrap itself. It currently uses an +external preprocessor. * fast recursive descent parser, parses C90 and C99 * handles most GCC extensions, e.g. __attribute__, inline assembler, @@ -21,4 +20,4 @@ straightforward, so it can be used for other purposes than code generation. * compiler driver compatible with GCC (-fxxx, -Wxxx, -M, ...) * uses libFIRM for optimization and code generation (devel/libfirm) -WWW: http://www.libfirm.org +WWW: http://sourceforge.net/projects/cparser/ |