blob: 64105207f670cfd9bb167f31640d1fe50938e990 (
plain)
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
#include "head.include"
<title>OCaml - Download</title>
</head>
<body id="Screen">
#include "body.header.include"
#include "body.leftmenu.include"
<h1>Download & Installation</h1>
<p> OCaml is distributed by Inria. You will find below links to download
the latest stable version, as well as links towards the SVN with the
development version. </p>
<h2>Stable Version</h2>
<p> The most recent version is <b>OCaml 3.12.1</b>, released on
2011-07-04. </p>
<ul>
<li><a href="http://yquem.inria.fr/~protzenk/caml-installer/ocaml-3.12.1-mingw32.exe">OCaml 3.12.1 Windows Installer</a> (and <a href="http://protz.github.com/ocaml-installer/">its documentation</a>)
<li><a href="http://caml.inria.fr/pub/distrib/ocaml-3.12/ocaml-3.12.1.tar.gz">OCaml 3.12.1 Sources</a> (for compilation under Unix or Windows Cygwin)
</ul>
<p>Find more packages on <a href="http://caml.inria.fr/ocaml/release.en.html">Inria's website</a>.</p>
<h2>Development Version</h2>
<p>You can access the most recent version in the SVN: </p>
<ul>
<li><a href="http://caml.inria.fr/cgi-bin/viewvc.cgi/">Browse the repository</a>
<li>Get a copy of the next release:</p>
<code>svn checkout http:⁄⁄caml.inria.fr⁄svn⁄ocaml⁄trunk</code>
</ul>
<h2>Other Implementations</h2>
<p>These projects allow you to compile OCaml code towards
platforms traditionnally designed for other languages.</p>
<ul>
<li>The <a href="http://ocsigen.org/js_of_ocaml/">js_of_ocaml project</a>, an OCaml to Javascript compiler (stable)
<li>The <a href="http://cafesterol.x9c.fr/">ocamljava project</a>, an OCaml to Java compiler (experimental)
</ul>
#include "body.trailer.include"
</body>
</html>
|