-
Notifications
You must be signed in to change notification settings - Fork 89
/
INSTALL
61 lines (40 loc) · 1.53 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
Table of contents
-----------------
0. Install / Bootstrap
1. MSI package (Windows)
2. DEB and RPM packages (Linux)
3. Source tarball
0. Install / Bootstrap
----------------------
Please disregard any notes about you needing no bootstrap in previous
versions of this file :-)
1. MSI package
--------------
To install Nemerle, please run nemerle-VERSION.msi and follow instructions
displayed on the screen.
To remove it please go to
Start --> Configuration --> Control Panel --> Add / Remove Software
and select the Nemerle package for removal.
2. DEB and RPM packages
-----------------------
The common techniques of using your favorite package management tool
should work. In case of a RPM nemerle-libs-VERSION.ARCH.rpm package
contains just the Nemerle.dll library needed to run programs compiled
with Nemerle compiler, while nemerle-VERSION.ARCH.rpm contains the
compiler and other development stuff.
3. Source tarball, snapshots and SVN trunk
------------------------------------------
The usual combination of:
./configure
make
make check
make install
should work just fine. If 'make' doesn't work try to use 'gmake' (our
Makefiles require GNU Make extensions). The 'make check' part is optional,
though you are encouraged to test the freshly built compiler with it.
This may however take some time.
The configure script takes many switches that affect installation
paths, and compilation process. Run configure with --help switch to
list all supported options.
To remove Nemerle please use 'make uninstall'.
Good luck!