forked from dherman/es4
-
Notifications
You must be signed in to change notification settings - Fork 1
/
INSTALL
executable file
·72 lines (46 loc) · 1.78 KB
/
INSTALL
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
72
ECMAScript Edition 4 Reference Implementation
Copyright (c) 2007 Adobe Systems Inc., The Mozilla Foundation, Opera
Software ASA, and others.
See the file LICENSE for terms and conditions.
======================================================================
Binary Installation
======================================================================
The binary release consists of a single directory es4/ with several
files. As long as you keep all these files together in one directory,
you may move that directory anywhere (and/or rename it).
Cygwin
------
Run the interpreter with the es4 script.
Type :help at the ES4 prompt for information about the interpreter.
Windows
-------
On Windows without Cygwin, run the es4.bat batch file.
Type :help at the ES4 prompt for information about the interpreter.
Linux
-----
Run the interpreter with the es4 script. Your system must contain an
accessible installation of libgmp.so.3 (which it probably does) and
GNU LIBC 2.3.
Type :help at the ES4 prompt for information about the interpreter.
MacOS X
-------
Run the interpreter with the es4 script.
Type :help at the ES4 prompt for information about the interpreter.
======================================================================
Source Installation
======================================================================
We are actively working on improving and documenting the installation
process. Currently the high-level overview is:
Building with SML/NJ (recommended)
--------------------
Install SML/NJ version 110.62 or later
% ./configure --with-dialect=smlnj
% make compile dump
Building with MLton
-------------------
Install MLton version 20070826 or later
% ./configure --with-dialect=mlton
% make compile dump
Building with SML.NET
---------------------
Not currently supported.