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
|
INSTALLATION
===========================================================================
1- no dependencies only the ocaml compiler is needed
2- configure with
./configure
Recognized options are:
--prefix <path> installation prefix [/usr/local]
--bindir <path> user executables [PREFIX/bin]
--mandir <path> man pages [PREFIX/share/man]
--bytecode don't use native compiler (for testing only)
--no-version-check don't check for correct ocaml version
(not recommended)
The first three options set the installation directories.
The --no-version-check option disables the ocaml version check. Use
it at your own risk (for instance when your working with the latest
cvs version of ocaml).
[If you want to know the details: The configure script checks for
ocamlc and ocamlopt.opt. When the latter is found native
compilation is used. It further checks whether ocamldep is
installed and has the same version as ocamlc and ocamlopt.opt.
]
3- compile with
make all
4- acquire suitable rights and install
make install
5- optional, if you want update-otags, check the path' in
contrib/update-otags and contrib/Makefile and do then
make -C contrib install
|