forked from ocsigen/lwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
71 lines (49 loc) · 2.19 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Lwt: lightweight thread library for OCaml
--------------------------------------------------------------------------
This library is part of the Ocsigen project. See:
http://ocsigen.org/lwt
--------------------------------------------------------------------------
Requirements:
* OCaml with ocamlbuild (>= 3.12.1)
* findlib
* [optional] react (from http://erratique.ch/software/react)
* [optional] libev (from http://software.schmorp.de/pkg/libev.html)
* [optional] ocaml-text (needed for the enhanced toplevel)
* [optional] ocamlssl (>= 0.4.0) (ocamlssl needs openssl) (>= 0.4.1 for MacOS)
* [optional] glib-2.0 development files and pkg-config
If the dependencies are not installed on your computer, you can use OPAM
to install them automatically. See:
http://opam.ocaml.org/
They might also be available through your distribution.
--------------------------------------------------------------------------
Instructions:
* run "ocaml setup.ml -configure" to configure sources
You can add '--enable-<lib>' to enable compilation of
the sub-library <lib>. The flag '--enable-all' will
enable everything.
In order to compile without libev support you must add
'--disable-libev'.
* run "ocaml setup.ml -build" to compile
* run "ocaml setup.ml -install" as root to install compiled libraries
* run "ocaml setup.ml -uninstall" as root to uninstall them
HTML documentation is generated in _build/lwt.docdir/, but is not
installed by default.
If you get the development version you need to obtain OASIS
(http://oasis.forge.ocamlcore.org/).
If you want to build the toplevel you have to install compiler
libraries. Under Debian it is the package ocaml-compiler-libs.
Note that the utop project replaces the Lwt toplevel:
https://github.com/diml/utop
--------------------------------------------------------------------------
Authors:
* Jérôme Vouillon
* Vincent Balat
* Nataliya Guts
* Pierre Clairambault
* Stéphane Glondu
* Jérémie Dimino
* Warren Harris (Metaweb Technologies, Inc.)
* Pierre Chambart
* Mauricio Fernandez
See each source file for copyright information, and COPYING for license.
--------------------------------------------------------------------------