-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
39 lines (23 loc) · 785 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
= Language.C =
Language.C is a parser and pretty-printer framework for C99 and the extensions of gcc.
See http://www.sivity.net/projects/language.c/
== Build and Install ==
cabal install
-- or --
runhaskell Setup configure FLAGS
runhaskell Setup build
runhaskell Setup install
Provide the set of flags passing
--flags="<flags-seperated-by-space>"
to configure.
== Compatibility ==
Tested with ghc-6.12 (Ubuntu), ghc-7.0 (OSX 10.5, Linux) and ghc-7.2 (Linux).
It is recommended to use the most recent platform release: http://hackage.haskell.org/platform/.
== Sources ==
see src/README
== Examples ==
A couple of small examples are available in /examples
== Testing ==
A couple of regression tests can be run via
> cd test/harness; make
For more tests, see test/README.