forked from OkCupid/sfslite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
44 lines (32 loc) · 1.06 KB
/
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
40
41
42
43
44
SFSLITE README
=======
$Id$
SFSLITE HOWTO
-------------
- Based on David Mazieres's SFS (see www.fs.net)
- Build requires GMP version 4 or higher
If from SVN, then you need the GNU autotool suite, with
libtool/libtoolize:
$ sh -x setup.gnu -f -i -s
$ ./configure
$ gmake
$ gmake install
If from a release tarball, then just:
$ ./configure
$ gmake
$ gmake install
This will install with the default build options: -O2 with static linkage,
and no dmalloc support. Different build options accessed like:
$ ./configure --with-mode=shdbg
etc, where the modes are:
shdbg: shared build, with dmalloc support, no compiler optimization
shared: shared build, no compiler optimization
shopt: shared build, -O2
debug: static build, with dmalloc support, no compiler optimization
deflt: static build, -O2, no dmalloc
This library was also available as a port for FreeBSD, but
I fell behind and had trouble navigating the Ports bureaucracy.
If you depend on the FreeBSD port and would like to help me out,
please drop me a line.
Max Krohn
(first name AT okws DOT org)