minor fixes for clang++
[senf.git] / debian / README.Debian
1
2 Th SENF debian distribution consists of the following packages:
3
4   libsenf       non-debug static library   /usr/lib/libsenf.a 
5                                            /usr/lib/senf/*.o
6
7   libsenf-dbg   debug static library       /usr/lib/libsenf_g.a
8                                            /usr/lib/senf/*_g.o
9
10   libsenf-dev   include files              /usr/include/senf
11                                            /usr/lib/senf/site_scons
12                                            /usr/bin
13
14   libsenf-doc   documentation              /usr/share/doc/libsenf-doc/html
15                                            /usr/share/doc/libsenf-doc/examples
16
17
18 So to develop using SENF, you will need 'libsenf-dev' and one of
19 'libsenf' or 'libsenf-dbg' however, you will probably want to install
20 both, 'libsenf' and 'libsenf-dbg'.
21
22 To compile an application against the debug library, just link against
23 the libsenf_g.a library AND ENSURE the preprocessor symbol
24 'SENF_DEBUG' is defined.
25
26 To compile an application against the non-debug library, link against
27 libsenf.a.
28
29 Lets repeat that:
30
31   VERY IMPORTANT: When building against libsenf_g.a, you MUST define
32   SENF_DEBUG. Don't say, you haven't been warned ...
33