| 1 |
Installation Notes for Windows NT/2000/XP
|
| 2 |
=========================================
|
| 3 |
|
| 4 |
|
| 5 |
CDuce can be executed on Microsoft Windows by using the
|
| 6 |
RedHat/Cygnus environment Cygwin freely available at
|
| 7 |
|
| 8 |
http://www.cygwin.com/
|
| 9 |
|
| 10 |
The executable needs the cygwin1.dll that is distributed
|
| 11 |
under GPL license. This is not compatible with the CDuce license.
|
| 12 |
For this reason we do not provide binaries but give here detailed
|
| 13 |
instructions about how to compile CDuce sources under Cygwin/Windows.
|
| 14 |
|
| 15 |
|
| 16 |
|
| 17 |
------------------------------------------------------------------------------
|
| 18 |
Prerequisites
|
| 19 |
------------------------------------------------------------------------------
|
| 20 |
|
| 21 |
Before compiling CDuce on Windows, you need to install recent
|
| 22 |
releases of the following packages:
|
| 23 |
|
| 24 |
|
| 25 |
cygwin
|
| 26 |
http://www.cygwin.com
|
| 27 |
ocaml
|
| 28 |
http://caml.inria.fr/ocaml/distrib.html
|
| 29 |
findlib
|
| 30 |
http://www.ocaml-programming.de/packages
|
| 31 |
wlex
|
| 32 |
http://www.eleves.ens.fr/home/frisch/soft.html#wlex
|
| 33 |
pcre-ocaml
|
| 34 |
http://www.ai.univie.ac.at/~markus/home/ocaml_sources.html
|
| 35 |
ocamlnet
|
| 36 |
http://sourceforge.net/projects/ocamlnet
|
| 37 |
pxp
|
| 38 |
http://www.ocaml-programming.de/packages/documentation/pxp/index_dev.html
|
| 39 |
|
| 40 |
|
| 41 |
Installation notes (you are advised to follow this order):
|
| 42 |
|
| 43 |
1) Download and execute cygwin setup.exe.
|
| 44 |
- Choose Internet installation
|
| 45 |
- Choose a root directory whose path has no blanks in it
|
| 46 |
- Choose as Local Package Directory <your root>/usr/src (optional)
|
| 47 |
- Choose the mirror closest to you
|
| 48 |
- When asked to select the packages to install add to the default
|
| 49 |
choices the following packages:
|
| 50 |
Devel/
|
| 51 |
autoconf*
|
| 52 |
automake*
|
| 53 |
binutils
|
| 54 |
gcc*
|
| 55 |
make
|
| 56 |
Lib/
|
| 57 |
pcre **both binaries and sources**
|
| 58 |
you may also find useful to install the following packages
|
| 59 |
Editors/
|
| 60 |
emacs or vim (no trolls)
|
| 61 |
Net/
|
| 62 |
openssh
|
| 63 |
ncftp
|
| 64 |
Devel/
|
| 65 |
cvs
|
| 66 |
Utils/
|
| 67 |
diff
|
| 68 |
patch
|
| 69 |
then proceed with installation
|
| 70 |
|
| 71 |
|
| 72 |
2) Download (we suggest in /usr/src) and install Ocaml
|
| 73 |
[For the impatients: ./configure && make world.opt]
|
| 74 |
|
| 75 |
|
| 76 |
3) Download (guess where) and install findlib
|
| 77 |
a plain ./configure && make all && make opt && make install
|
| 78 |
should work
|
| 79 |
|
| 80 |
|
| 81 |
4) Download and install wlex:
|
| 82 |
you only need to build and install the runtime support library
|
| 83 |
(not the wlex tool itself):
|
| 84 |
|
| 85 |
make runtime.all && make install_runtime
|
| 86 |
|
| 87 |
5) Download and unpack pcre-ocaml.
|
| 88 |
- copy pcre_make.win32/pcre.h to the pcre source directory you
|
| 89 |
installed at point (1) (it should be in /usr/src/pcre-X.Y-Z)
|
| 90 |
- cd in the source directory of pcre, copy or rename the file
|
| 91 |
config.in as config.h, and change in this new file
|
| 92 |
the macros that define HAVE_STRERROR and HAVE_MEMMOVE to
|
| 93 |
define them as 1 rather than 0.
|
| 94 |
- Compile and install by
|
| 95 |
make STATIC=1
|
| 96 |
make install STATIC=1
|
| 97 |
|
| 98 |
|
| 99 |
6) Download and install ocamlnet
|
| 100 |
|
| 101 |
|
| 102 |
7) PXP:
|
| 103 |
CDuce requires a development version >= 1.1.93.
|
| 104 |
configure with the following options
|
| 105 |
./configure -with-lex -with-lex-compat
|
| 106 |
make all && make opt && make install
|
| 107 |
|
| 108 |
|
| 109 |
|
| 110 |
Now you can compile CDuce sources as indicated in the INSTALL file
|
| 111 |
namely
|
| 112 |
|
| 113 |
|
| 114 |
------------------------------------------------------------------------------
|
| 115 |
Compilation, installation
|
| 116 |
------------------------------------------------------------------------------
|
| 117 |
|
| 118 |
See the INSTALL file.
|