| 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://ocamlnet.sourceforge.net/
|
| 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_naje.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 |
- Copy or rename the file config.in as config.h, and change
|
| 91 |
the macros that define HAVE_STRERROR and HAVE_MEMMOVE to
|
| 92 |
define them as 1 rather than 0.
|
| 93 |
- Compile and install by
|
| 94 |
make STATIC=1
|
| 95 |
make install STATIC=1
|
| 96 |
|
| 97 |
|
| 98 |
6) Download and install ocamlnet
|
| 99 |
|
| 100 |
|
| 101 |
7) PXP:
|
| 102 |
CDuce requires a development version >= 1.1.93.
|
| 103 |
configure with the following options
|
| 104 |
./configure -with-lex -with-lex-compat
|
| 105 |
make all && make opt && make install
|
| 106 |
|
| 107 |
|
| 108 |
|
| 109 |
Now you can compile CDuce sources as indicated in the INSTALL file
|
| 110 |
namely
|
| 111 |
|
| 112 |
|
| 113 |
------------------------------------------------------------------------------
|
| 114 |
Compilation
|
| 115 |
------------------------------------------------------------------------------
|
| 116 |
|
| 117 |
You need a GNU Make (or equivalent) to use the Makefile from the
|
| 118 |
distribution. It defines the following goals:
|
| 119 |
|
| 120 |
- make cduce
|
| 121 |
compiles the CDuce command line interpreter
|
| 122 |
|
| 123 |
- make dtd2cduce
|
| 124 |
compiles the dtd2cduce tools (converts DTD to CDuce types)
|
| 125 |
|
| 126 |
- make webiface
|
| 127 |
compiles the CDuce web interface interpreter (to be used as a CGI script)
|
| 128 |
|
| 129 |
- make local_website
|
| 130 |
compiles in the web/www/ subdirectory the HTML files of CDuce website
|
| 131 |
(including the tutorial)
|
| 132 |
|
| 133 |
- make all
|
| 134 |
equivalent to (make cduce; make dtd2cduce; make local_website)
|
| 135 |
|
| 136 |
|
| 137 |
Makefile accepts the following options, which can take the values
|
| 138 |
true or false.
|
| 139 |
|
| 140 |
NATIVE=true : use the OCaml native code compiler (ocamlopt) to build CDuce
|
| 141 |
NATIVE=false : use the OCaml bytecode compiler (ocamlc)
|
| 142 |
default: true (the native code version is much faster)
|
| 143 |
|
| 144 |
PXP_WLEX=true : use wlex for parsing UTF-8 XML files
|
| 145 |
PXP_WLEX=false: use ocamllex for parsing UTF-8 XML files
|
| 146 |
default: false (ocamllex is faster; wlex is more compact)
|
| 147 |
|
| 148 |
Usage, e.g.:
|
| 149 |
make cduce NATIVE=false
|
| 150 |
|
| 151 |
|
| 152 |
------------------------------------------------------------------------------
|
| 153 |
|
| 154 |
Efficiency issues:
|
| 155 |
|
| 156 |
- OCamlnet: if you plan to load XML file with encodings other than
|
| 157 |
UTF-8, it is advised to use the CVS version of OCamlnet:
|
| 158 |
http://sourceforge.net/cvs/?group_id=19774
|
| 159 |
Indeed, the netconversion module in the latest release (0.95) was
|
| 160 |
very slow, and it has been rewritten since then.
|
| 161 |
|