-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
36 lines (24 loc) · 1004 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
Build dependencies: flex (>= 2.3.35), bison, cmake (>= 2.8), apr (>= 1.4),
apr-util (>= 1.3) and SQLite (>= 3). At the moment, the binaries provided by
each of these packages (flex, bison, apr-1-config, and apu-1-config) must be in
your $PATH.
To build:
mkdir build
cd build
cmake ..
make
By default, this performs a "debug" build: assertions are enabled, and
compiler optimizations are disabled. To disable assertions and enable
optimizations, specify a release build when running cmake:
cmake -D C4_BUILD_TYPE=Release ..
To run:
cd build
./src/c4i/c4i foo.olg
Code Style:
* Use four spaces for indentation, not tabs.
* When including headers, external headers should be included first,
then "c4-internal.h", and finally other required C4 headers. Within
each group, includes should be sorted alphabetically.
* Error messages (e.g. ERROR()) should begin with a capital letter.
* Lines should generally be wrapped at 80 characters.
* Declarations and statements should NOT be intermixed.