aboutsummaryrefslogtreecommitdiffstats
path: root/lang/cparser/pkg-descr
diff options
context:
space:
mode:
authorwxs <wxs@FreeBSD.org>2008-12-02 09:24:52 +0800
committerwxs <wxs@FreeBSD.org>2008-12-02 09:24:52 +0800
commitf5ebf5b9d39e4eb25e9a9864608a163397515cc8 (patch)
tree83069c4f9469e3c136f19926874803b172bd6a8c /lang/cparser/pkg-descr
parent9b1c2ad214e1cf22006ad24b700475668480f3b4 (diff)
downloadfreebsd-ports-gnome-f5ebf5b9d39e4eb25e9a9864608a163397515cc8.tar.gz
freebsd-ports-gnome-f5ebf5b9d39e4eb25e9a9864608a163397515cc8.tar.zst
freebsd-ports-gnome-f5ebf5b9d39e4eb25e9a9864608a163397515cc8.zip
- 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)
Diffstat (limited to 'lang/cparser/pkg-descr')
-rw-r--r--lang/cparser/pkg-descr10
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/cparser/pkg-descr b/lang/cparser/pkg-descr
index 40555d4c0af6..6f81c2800442 100644
--- a/lang/cparser/pkg-descr
+++ b/lang/cparser/pkg-descr
@@ -1,12 +1,12 @@
-cparser is a C compiler, which can parse C89 and C99 as well as many GCC and
+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 a SSA-based intermediate representation in form of
+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 C89 and C99
-* handles most GCC extensions, f.e. __attribute__, inline assembler,
+* 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
@@ -18,7 +18,7 @@ straightforward, so it can be used for other purposes than code generation.
* 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 with GCC (-fxxx, -Wxxx, -M, ...)
+* compiler driver compatible with GCC (-fxxx, -Wxxx, -M, ...)
* uses libFIRM for optimization and code generation (devel/libfirm)
WWW: http://www.libfirm.org