[project @ 2000-08-09 13:37:56 by rrt]
[ghc-hetmet.git] / ghc / docs / users_guide / installing.sgml
1 <Chapter id="sec-installing-bin-distrib">
2 <Title>Installing from binary distributions</Title>
3 <IndexTerm><Primary>binary installations</Primary></IndexTerm>
4 <IndexTerm><Primary>installation, of binaries</Primary></IndexTerm>
5
6 <Para>
7 Installing from binary distributions is easiest, and recommended!
8 (Why binaries?  Because GHC is a Haskell compiler written in Haskell,
9 so you've got to &ldquo;bootstrap&rdquo; it, somehow.  We provide
10 machine-generated C-files-from-Haskell for this purpose, but it's
11 really quite a pain to use them.  If you must build GHC from its
12 sources, using a binary-distributed GHC to do so is a sensible way to
13 proceed. For the other <Literal>fptools</Literal> programs, many are written in Haskell,
14 so binary distributions allow you to install them without having a Haskell compiler.)
15 </Para>
16
17 <Para>This guide is in two parts: installing on Unix-a-likes, and installing on Windows.</Para>
18
19
20 <Sect1><Title>Installing on Unix-a-likes</Title>
21
22 <Sect2>
23 <Title>Bundle structure</Title>
24
25 <Para>
26 <IndexTerm><Primary>bundles of binary stuff</Primary></IndexTerm>
27 </Para>
28
29 <Para>
30 Binary distributions come in &ldquo;bundles,&rdquo; one bundle per file called
31 <Literal>&lt;bundle&gt;-&lt;platform&gt;.tar.gz</Literal>.  (See the building guide for the definition of a platform.)  Suppose that you untar a binary-distribution bundle, thus:
32 </Para>
33
34 <Para>
35
36 <Screen>
37 % cd /your/scratch/space
38 % gunzip &#60; ghc-x.xx-sun-sparc-solaris2.tar.gz | tar xvf -</Screen>
39
40 </Para>
41
42 <Para>
43 Then you should find a single directory, <Literal>fptools</Literal>, with the following
44 structure:
45 </Para>
46
47 <Para>
48 <IndexTerm><Primary>binary distribution, layout</Primary></IndexTerm>
49 <IndexTerm><Primary>directory layout (binary distributions)</Primary></IndexTerm>
50 <VariableList>
51
52 <VarListEntry>
53 <Term><Literal>Makefile.in</Literal></Term>
54 <ListItem>
55 <Para>
56 the raw material from which the <Literal>Makefile</Literal>
57 will be made (<Xref LinkEnd="sec-install">).
58 </Para>
59 </ListItem></VarListEntry>
60 <VarListEntry>
61 <Term><Literal>configure</Literal></Term>
62 <ListItem>
63 <Para>
64 the configuration script (<Xref LinkEnd="sec-install">).
65 </Para>
66 </ListItem></VarListEntry>
67 <VarListEntry>
68 <Term><Literal>README</Literal></Term>
69 <ListItem>
70 <Para>
71 Contains this file summary.
72 </Para>
73 </ListItem></VarListEntry>
74 <VarListEntry>
75 <Term><Literal>INSTALL</Literal></Term>
76 <ListItem>
77 <Para>
78 Contains this description of how to install
79 the bundle.
80 </Para>
81 </ListItem></VarListEntry>
82 <VarListEntry>
83 <Term><Literal>ANNOUNCE</Literal></Term>
84 <ListItem>
85 <Para>
86 The announcement message for the bundle.
87 </Para>
88 </ListItem></VarListEntry>
89 <VarListEntry>
90 <Term><Literal>NEWS</Literal></Term>
91 <ListItem>
92 <Para>
93 release notes for the bundle&mdash;a longer version
94 of <Literal>ANNOUNCE</Literal>.  For GHC, the release notes are contained in the User
95 Guide and this file isn't present.
96 </Para>
97 </ListItem></VarListEntry>
98 <VarListEntry>
99 <Term><Literal>bin/&lt;platform&gt;</Literal></Term>
100 <ListItem>
101 <Para>
102 contains platform-specific executable
103 files to be invoked directly by the user.  These are the files that
104 must end up in your path.
105 </Para>
106 </ListItem></VarListEntry>
107 <VarListEntry>
108 <Term><Literal>lib/&lt;platform&gt;/</Literal></Term>
109 <ListItem>
110 <Para>
111 contains platform-specific support
112 files for the installation.  Typically there is a subdirectory for
113 each <Literal>fptools</Literal> project, whose name is the name of the project with its
114 version number.  For example, for GHC there would be a sub-directory
115 <Literal>ghc-x.xx</Literal>/ where <Literal>x.xx</Literal> is the version number of GHC in the bundle.
116 </Para>
117
118 <Para>
119 These sub-directories have the following general structure:
120 </Para>
121
122 <Para>
123 <VariableList>
124
125 <VarListEntry>
126 <Term><Literal>libHSstd.a</Literal> etc:</Term>
127 <ListItem>
128 <Para>
129 supporting library archives.
130 </Para>
131 </ListItem></VarListEntry>
132 <VarListEntry>
133 <Term><Literal>ghc-iface.prl</Literal> etc:</Term>
134 <ListItem>
135 <Para>
136 support scripts.
137 </Para>
138 </ListItem></VarListEntry>
139 <VarListEntry>
140 <Term><Literal>import/</Literal></Term>
141 <ListItem>
142 <Para>
143 <IndexTerm><Primary>Interface files</Primary></IndexTerm> (<Literal>.hi</Literal>) for the prelude.
144 </Para>
145 </ListItem></VarListEntry>
146 <VarListEntry>
147 <Term><Literal>include/</Literal></Term>
148 <ListItem>
149 <Para>
150 A few C <Literal>&num;include</Literal> files.
151 </Para>
152 </ListItem></VarListEntry>
153 </VariableList>
154 </Para>
155 </ListItem></VarListEntry>
156 <VarListEntry>
157 <Term><Literal>share/</Literal></Term>
158 <ListItem>
159 <Para>
160 contains platform-independent support files
161 for the installation.  Again, there is a sub-directory for each
162 <Literal>fptools</Literal> project.
163 </Para>
164 </ListItem></VarListEntry>
165 <VarListEntry>
166 <Term><Literal>html/</Literal></Term>
167 <ListItem>
168 <Para>
169 contains HTML documentation files (one
170 sub-directory per project).
171 </Para>
172 </ListItem></VarListEntry>
173 <VarListEntry>
174 <Term><Literal>man/</Literal></Term>
175 <ListItem>
176 <Para>
177 contains Unix manual pages.
178 </Para>
179 </ListItem></VarListEntry>
180 </VariableList>
181 </Para>
182
183 <Para>
184 This structure is designed so that you can unpack multiple bundles
185 (including ones from different releases or platforms) into a single
186 <Literal>fptools</Literal> directory
187 <FOOTNOTE>
188
189 <Para>
190 this doesn't work at the
191 moment
192 </Para>
193
194 </FOOTNOTE>
195 :
196 </Para>
197
198 <Para>
199
200 <Screen>
201 % cd /your/scratch/space
202 % gunzip &#60; ghc-x.xx-sun-sparc-solaris2.tar.gz | tar xvf -
203 % gunzip &#60; happy-x.xx-sun-sparc-sunos4.tar.gz | tar xvf -</Screen>
204
205 </Para>
206
207 <Para>
208 When you do multiple unpacks like this, the top level <Literal>Makefile</Literal>,
209 <Literal>README</Literal>, and <Literal>INSTALL</Literal> get overwritten each time.
210 That's fine&mdash;they should be the same.  Likewise, the
211 <Literal>ANNOUNCE-&lt;bundle&gt;</Literal> and <Literal>NEWS-&lt;bundle&gt;</Literal>
212 files will be duplicated across multiple platforms, so they will be
213 harmlessly overwritten when you do multiple unpacks.  Finally, the
214 <Literal>share/</Literal> stuff will get harmlessly overwritten when you do
215 multiple unpacks for one bundle on different platforms.
216 </Para>
217
218 <Sect3 id="sec-install">
219 <Title>Installing</Title>
220
221 <Para>
222 OK, so let's assume that you have unpacked your chosen bundles into a
223 scratch directory <Literal>fptools</Literal>. What next? Well, you will at least need
224 to run the <Literal>configure</Literal><IndexTerm><Primary>configure</Primary></IndexTerm> script by changing your
225 directory to <Literal>fptools</Literal> and typing <Literal>./configure</Literal>.  That should convert
226 <Literal>Makefile.in</Literal> to <Literal>Makefile</Literal>.
227 </Para>
228
229 <Para>
230 <IndexTerm><Primary>installing in-place</Primary></IndexTerm>
231 <IndexTerm><Primary>in-place installation</Primary></IndexTerm>
232 You can now either start using the tools <Emphasis>in-situ</Emphasis> without going
233 through any installation process, just type <Literal>make in-place</Literal> to set the
234 tools up for this. You'll also want to add the path which <Literal>make</Literal> will
235 now echo to your <Literal>PATH</Literal> environment variable. This option is useful if
236 you simply want to try out the package and/or you don't have the
237 necessary privileges (or inclination) to properly install the tools
238 locally. Note that if you do decide to install the package `properly'
239 at a later date, you have to go through the installation steps that
240 follows.
241 </Para>
242
243 <Para>
244 To install an <Literal>fptools</Literal> package, you'll have to do the following:
245 </Para>
246
247 <Para>
248
249 <OrderedList>
250 <ListItem>
251
252 <Para>
253  Edit the <Literal>Makefile</Literal> and check the settings of the following variables:
254
255 <IndexTerm><Primary>directories, installation</Primary></IndexTerm>
256 <IndexTerm><Primary>installation directories</Primary></IndexTerm>
257
258 <VariableList>
259
260 <VarListEntry>
261 <Term><Literal>platform</Literal></Term>
262 <ListItem>
263 <Para>
264 the platform you are going to install for.
265 </Para>
266 </ListItem></VarListEntry>
267 <VarListEntry>
268 <Term><Literal>bindir</Literal></Term>
269 <ListItem>
270 <Para>
271 the directory in which to install user-invokable
272 binaries.
273 </Para>
274 </ListItem></VarListEntry>
275 <VarListEntry>
276 <Term><Literal>libdir</Literal></Term>
277 <ListItem>
278 <Para>
279 the directory in which to install
280 platform-dependent support files.
281 </Para>
282 </ListItem></VarListEntry>
283 <VarListEntry>
284 <Term><Literal>datadir</Literal></Term>
285 <ListItem>
286 <Para>
287 the directory in which to install
288 platform-independent support files.
289 </Para>
290 </ListItem></VarListEntry>
291 <VarListEntry>
292 <Term><Literal>infodir</Literal></Term>
293 <ListItem>
294 <Para>
295 the directory in which to install Emacs info
296 files.
297 </Para>
298 </ListItem></VarListEntry>
299 <VarListEntry>
300 <Term><Literal>htmldir</Literal></Term>
301 <ListItem>
302 <Para>
303 the directory in which to install HTML
304 documentation.
305 </Para>
306 </ListItem></VarListEntry>
307 <VarListEntry>
308 <Term><Literal>dvidir</Literal></Term>
309 <ListItem>
310 <Para>
311 the directory in which to install DVI
312 documentation.
313 </Para>
314 </ListItem></VarListEntry>
315 </VariableList>
316
317 The values for these variables can be set through invocation of the
318 <Command>configure</Command><IndexTerm><Primary>configure</Primary></IndexTerm>
319 script that comes with the distribution, but doing an optical diff to
320 see if the values match your expectations is always a Good Idea.
321 </para>
322
323 <para>
324 <Emphasis>Instead of running <Command>configure</Command>, it is
325 perfectly OK to copy <Filename>Makefile.in</Filename> to
326 <Filename>Makefile</Filename> and set all these variables directly
327 yourself.  But do it right!</Emphasis>
328 </Para>
329
330 </ListItem>
331 <ListItem>
332
333 <Para>
334 Run <Literal>make install</Literal>.  This <Emphasis>
335 should</Emphasis> work with ordinary Unix
336 <Literal>make</Literal>&mdash;no need for fancy stuff like GNU
337 <Literal>make</Literal>.
338
339 </Para>
340 </ListItem>
341 <ListItem>
342
343 <Para>
344 <Literal>rehash</Literal> (t?csh or zsh users), so your shell will see the new
345 stuff in your bin directory.
346
347 </Para>
348 </ListItem>
349 <ListItem>
350
351 <Para>
352  Once done, test your &ldquo;installation&rdquo; as suggested in 
353 <XRef LinkEnd="sec-GHC-test">.  Be sure to use a <Literal>-v</Literal>
354 option, so you can see exactly what pathnames it's using.
355
356 If things don't work as expected, check the list of known pitfalls in
357 the building guide.
358 </Para>
359 </ListItem>
360
361 </OrderedList>
362
363 </Para>
364
365 <Para>
366 <IndexTerm><Primary>link, installed as ghc</Primary></IndexTerm>
367 When installing the user-invokable binaries, this installation
368 procedure will install GHC as <Literal>ghc-x.xx</Literal> where <Literal>x.xx</Literal> is the version
369 number of GHC.  It will also make a link (in the binary installation
370 directory) from <Literal>ghc</Literal> to <Literal>ghc-x.xx</Literal>.  If you install multiple versions
371 of GHC then the last one &ldquo;wins&rdquo;, and &ldquo;<Literal>ghc</Literal>&rdquo; will invoke the last
372 one installed.  You can change this manually if you want.  But
373 regardless, <Literal>ghc-x.xx</Literal> should always invoke GHC version <Literal>x.xx</Literal>.
374 </Para>
375
376 </Sect3>
377
378
379 <Sect3>
380 <Title>What bundles there are</Title>
381
382 <Para>
383 <IndexTerm><Primary>bundles, binary</Primary></IndexTerm>
384 There are plenty of &ldquo;non-basic&rdquo; GHC bundles.  The files for them are
385 called <Literal>ghc-x.xx-&lt;bundle&gt;-&lt;platform&gt;.tar.gz</Literal>, where
386 the <Literal>&lt;platform&gt;</Literal> is as above, and <Literal>&lt;bundle&gt;</Literal> is one
387 of these:
388 </Para>
389
390 <Para>
391 <VariableList>
392
393 <VarListEntry>
394 <Term><Literal>prof</Literal>:</Term>
395 <ListItem>
396 <Para>
397 Profiling with cost-centres.  You probably want this.
398 <IndexTerm><Primary>profiling bundles</Primary></IndexTerm>
399 <IndexTerm><Primary>bundles, profiling</Primary></IndexTerm>
400 </Para>
401 </ListItem></VarListEntry>
402 <VarListEntry>
403 <Term><Literal>par</Literal>:</Term>
404 <ListItem>
405 <Para>
406 Parallel Haskell features (sits on top of PVM).
407 You'll want this if you're into that kind of thing.
408 <IndexTerm><Primary>parallel bundles</Primary></IndexTerm>
409 <IndexTerm><Primary>bundles, parallel</Primary></IndexTerm>
410 </Para>
411 </ListItem></VarListEntry>
412 <VarListEntry>
413 <Term><Literal>gran</Literal>:</Term>
414 <ListItem>
415 <Para>
416 The &ldquo;GranSim&rdquo; parallel-Haskell simulator
417 (hmm&hellip; mainly for implementors).
418 <IndexTerm><Primary>bundles, gransim</Primary></IndexTerm>
419 <IndexTerm><Primary>gransim bundles</Primary></IndexTerm>
420 </Para>
421 </ListItem></VarListEntry>
422 <VarListEntry>
423 <Term><Literal>ticky</Literal>:</Term>
424 <ListItem>
425 <Para>
426 &ldquo;Ticky-ticky&rdquo; profiling; very detailed
427 information about &ldquo;what happened when I ran this program&rdquo;&mdash;really
428 for implementors.
429 <IndexTerm><Primary>bundles, ticky-ticky</Primary></IndexTerm>
430 <IndexTerm><Primary>ticky-ticky bundles</Primary></IndexTerm>
431 </Para>
432 </ListItem></VarListEntry>
433 </VariableList>
434 </Para>
435
436 <Para>
437 One likely scenario is that you will grab <Emphasis>two</Emphasis>
438 binary bundles&mdash;basic, and profiling.  We don't usually make the
439 rest, although you can build them yourself from a source distribution.
440 </Para>
441
442 </Sect3>
443
444 <Sect3 id="sec-GHC-test">
445 <Title>Testing that GHC seems to be working
446 </Title>
447
448 <Para>
449 <IndexTerm><Primary>testing a new GHC</Primary></IndexTerm>
450 </Para>
451
452 <Para>
453 The way to do this is, of course, to compile and run <Emphasis>this</Emphasis> program
454 (in a file <Literal>Main.hs</Literal>):
455 </Para>
456
457 <Para>
458
459 <ProgramListing>
460 main = putStr "Hello, world!\n"
461 </ProgramListing>
462
463 </Para>
464
465 <Para>
466 Compile the program, using the <Literal>-v</Literal> (verbose) flag to verify that
467 libraries, etc., are being found properly:
468
469 <Screen>
470 % ghc -v -o hello Main.hs</Screen>
471
472 </Para>
473
474 <Para>
475 Now run it:
476
477 <Screen>
478 % ./hello
479 Hello, world!</Screen>
480
481 </Para>
482
483 <Para>
484 Some simple-but-profitable tests are to compile and run the notorious
485 <Literal>nfib</Literal><IndexTerm><Primary>nfib</Primary></IndexTerm> program, using different numeric types.  Start with
486 <Literal>nfib :: Int -&gt; Int</Literal>, and then try <Literal>Integer</Literal>, <Literal>Float</Literal>, <Literal>Double</Literal>,
487 <Literal>Rational</Literal> and perhaps the overloaded version.  Code for this is
488 distributed in <Literal>ghc/misc/examples/nfib/</Literal> in a source distribution.
489 </Para>
490
491 <Para>
492 For more information on how to &ldquo;drive&rdquo; GHC, either do <Literal>ghc -help</Literal> or
493 consult the User's Guide (distributed in several pre-compiled formats
494 with a binary distribution, or in source form in
495 <Literal>ghc/docs/users&lowbar;guide</Literal> in a source distribution).
496 </Para>
497
498 </Sect3>
499
500 </Sect2>
501
502 </Sect1>
503
504
505 <Sect1 id="sec-install-windows"><Title>Installing on Windows</Title>
506
507 <Para>
508 Getting the Glasgow Haskell Compiler (GHC) to run on Windows platforms can
509 be a bit of a trying experience. This document tries to simplify the task by
510 enumerating the steps you need to follow in order to set up and configure
511 your machine to run GHC (at least that's the intention ;-)
512 </Para>
513
514 <Sect2><Title>System requirements</Title>
515
516 <Para>
517 An installation of GHC requires ca. 200M of disk space, which is split
518 roughly 50-50 between GHC and the supporting software. To run GHC
519 comfortably, your machine should have at least 64M of memory.
520 </Para>
521
522 </Sect2>
523
524
525 <Sect2 id="sec-required"><Title>Software required</Title>
526
527 <Para>
528 You need two chunks of software other than GHC itself: the Cygwin toolchain, and Perl.  Here's how to get and install them.
529 </Para>
530
531 <Sect3><Title>The cygwin toolchain (1.1)</Title>
532
533 <Para>
534 GHC depends at the moment on the cygwin tools to operate, which
535 dresses up the Win32 environment into something more UNIX-like.
536 (notably, it provides <Command>gcc</Command>, <Command>as</Command> and <Command>ld</Command>),
537 so you'll need to install these tools first. You also need
538 Cygwin to use CVS. (We don't yet support later versions of Cygwin.)
539 </Para>
540
541 <Para>
542 Important grungy information about Cygwin:
543 </Para>
544
545 <ItemizedList>
546
547 <ListItem>
548 <Para>
549 Cygwin doesn't deal well with filenames that include
550 spaces. "<Filename>Program Files</Filename>" and "<Filename>Local files</Filename>" are
551 common gotchas.
552 </Para>
553 </ListItem>
554
555 <ListItem>
556 <Para>
557 Cygwin implements a symbolic link as a text file with some
558 magical text in it.  So programs that don't use Cygwin's
559 I/O libraries won't recognise such files as symlinks.  
560 In particular, programs compiled by GHC are meant to be runnable
561 without having Cygwin, so they don't use the Cygwin library, so
562 they don't recognise symlinks.
563 </Para>
564 </ListItem>
565
566 </ItemizedList>
567
568 <Para>
569 Here's how to install Cygwin.
570 </Para>
571
572 <ItemizedList>
573
574 <ListItem>
575 <Para>
576 Install Cygwin 1.1 from
577 <ULink URL="http://sources.redhat.com/cygwin/">sources.redhat.com</ULink>
578 Install this somewhere locally. Despite the warnings, things seem to work better if you install Cygwin into the root directory rather than <Filename>cygwin</Filename>, which is the default. If you're upgrading from Cygwin B20.1, running <Command>mount --import-old-mounts</Command> immediately after installation may help. Either way, you want to end up with your main drive mounted in <Emphasis><Constant>textmode</Constant></Emphasis>, and only the <Filename>bin</Filename> directories mounted in <Constant>binmode</Constant>.
579 </Para>
580 </ListItem>
581
582 <ListItem>
583 <Para>
584 Create the following directories (if they aren't already there; substitute the drive you installed Cygwin on for <Filename>c:</Filename>):
585 </Para>
586
587 <ItemizedList>
588 <ListItem><Para><Filename>c:/etc</Filename></Para></ListItem>
589 <ListItem><Para><Filename>c:/bin</Filename></Para></ListItem>
590 <ListItem><Para><Filename>c:/usr/local/bin</Filename></Para></ListItem>
591 </ItemizedList>
592
593 <Para>
594 (using <Command>mkdir -p /bin</Command>, etc.)
595 </Para>
596 </ListItem>
597
598 <ListItem>
599 <Para>
600 Copy <Filename>bash.exe</Filename> from the <Filename>bin</Filename>
601 directory of the cygwin tree
602 (<Filename>cygwin/bin/bash.exe</Filename>) to
603 <Filename>/bin</Filename> as <Filename>sh.exe</Filename>.  You might
604 think that it was easier to use bash directly from it original Cygwin
605 directory, but (a) some UNIX utils have got
606 <Filename>/bin/sh</Filename> hardwired in, and (b) the path following
607 <Literal>#!</Literal> is limited to 32 characters.
608 </Para>
609 </ListItem>
610
611 <ListItem>
612 <Para>
613 If you're an Emacs user and want to be able to run <Command>bash</Command>
614 from within a shell buffer, see the <ULink URL="http://www.cs.washington.edu/homes/voelker/ntemacs.html">NT Emacs home page</ULink> for
615 instructions on how to set this up.
616 </Para>
617 </ListItem>
618
619 </ItemizedList>
620
621 </Sect3>
622
623
624 <Sect3><Title>Environment variables</Title>
625
626 <Para>
627 In case you don't already know how to set environment variables on a Windows
628 machine, here's how. On WinNT/Win2k, to edit your <Constant>PATH</Constant>
629 variable (for example), do the following:
630 </Para>
631
632 <ItemizedList>
633 <ListItem><Para>Press Start/Settings/Control Panels</Para></ListItem>
634 <ListItem><Para>Double-click System</Para></ListItem>
635 <ListItem><Para>Press Advanced</Para></ListItem>
636 <ListItem><Para>Press Environment Variables</Para></ListItem>
637 <ListItem><Para>Under System Variables, select <Constant>PATH</Constant></Para></ListItem>
638 <ListItem><Para>Press Edit</Para></ListItem>
639 <ListItem><Para>Add "<Filename>;C:/whatever/</Filename>" to the end of the string (for example)</Para></ListItem>
640 <ListItem><Para>Press OK</Para></ListItem>
641 </ItemizedList>
642
643 <Para>
644 Some environment variables are &ldquo;user variables&rdquo; and
645 some are &ldquo;system variables&rdquo;.  I'm not sure of the difference
646 but both are changed though the same dialogue.
647 </Para>
648
649 <Para>
650 In addition, when running <Command>bash</Command>
651 you can set environment variables in your <Filename>.bashrc</Filename> file.
652 But it is better to set your environment variables from the
653 control panel (they get inherited by bash) because then they are visible
654 to applications that aren't started by bash.  For example,
655 when you're invoking CVS (and ssh) via Emacs keybindings;
656 it invokes <Filename>cvs.exe</Filename> without going via bash.
657 </Para>
658
659 <Para>
660 On a Win9x machine you need to edit <Filename>autoexec.bat</Filename> using
661 <Filename>Windows/system/Sysedit</Filename>.  You must reboot to make
662 the new settings take effect.
663 </Para>
664
665 <Para>
666 The following environment variables must be set:
667 </Para>
668
669 <Para>
670 <InformalTable>
671 <TGroup cols="2">
672 <ColSpec Align="Left" Colsep="0">
673 <ColSpec Align="Left" Colsep="0">
674 <TBody>
675
676 <Row>
677 <Entry><Constant>PATH</Constant></Entry>
678 <Entry>System</Entry>
679 <Entry><Para>
680 Add <Filename>C:/cygnus/cygwin-b20/H-i586-cygwin32/bin</Filename>.
681 <Command>bash</Command> needs this, and when it is invoked from
682 <Filename>/bin</Filename> it can't find it. <Filename>c:/bin</Filename> and
683 <Filename>c:/usr/local/bin</Filename> should also be added. These should all
684 come <Emphasis>before</Emphasis> the Windows system directories (e.g.
685 <Filename>WINNT\system32</Filename>). You might want to set them in your
686 <Filename>.bashrc</Filename> rather than in the system-wide
687 <Constant>PATH</Constant>.
688 </Para></Entry>
689 </Row>
690
691 <Row>
692 <Entry><Constant>SHELL</Constant></Entry>
693 <Entry>User</Entry>
694 <Entry><Para>
695 <Filename>c:/bin/sh</Filename>.
696 </Para></Entry>
697 </Row>
698
699 <Row>
700 <Entry><Constant>HOME</Constant></Entry>
701 <Entry>User</Entry>
702 <Entry><Para>
703 Set to point to your home directory.  This is where, for example,
704 <Command>bash</Command> will look for your <Filename>.bashrc</Filename>
705 file.
706 </Para></Entry>
707 </Row>
708
709 <Row>
710 <Entry><Constant>MAKE_MODE</Constant></Entry>
711 <Entry>User</Entry>
712 <Entry><Para>
713 Set to <Literal>UNIX</Literal>.  If you don't do
714 this you get very weird messages when you type `<Command>make</Command>', such as:
715 </Para><Screen>
716 /c: /c: No such file or directory</Screen></Entry>
717 </Row>
718
719 <Row>
720 <Entry><Constant>TMPDIR</Constant></Entry>
721 <Entry>User</Entry>
722 <Entry><Para>
723 Set to <Filename>c:/tmp</Filename> (note the forward slash). For some reason, Win2k invisibly sets this variable to point to a temporary directory in your profile, that contains embedded spaces.  If GHC sees the <Constant>TMPDIR</Constant> variable set, it tries to use it for temporary files, but Cygwin doesn't grok filenames with spaces, so disaster results.
724 </Para><Para>
725 Furthermore, it seems that <Constant>TMPDIR</Constant> must be set to a directory in the same file system in which you invoke GHC.  Otherwise you get very weird messages when you invoke GHC, such as:
726 <Screen>
727 does not exist
728 Action: openFile
729 Reason: file does not exist /tmp/ghc11068.cpp</Screen>
730 We think this is due to a bug in Cygwin.
731 </Para></Entry>
732 </Row>
733 </TBody>
734
735 </TGroup>
736 </InformalTable>
737 </Para>
738
739 <Para>
740 In addition, we've had problems in the past with certain environment
741 variables being set that seem to have bad effects on GHC. If you have
742 installed other systems ported from Unix, you might too. If you get weird
743 inexplicable failures to build GHC, then it might be worth weeding out unused
744 environment variables. Known culprits from the past include
745 <Constant>GCC_EXEC_PREFIX</Constant> and <Constant>INCLUDE</Constant>.
746 </Para>
747
748 </Sect3>
749
750
751 <Sect3><Title>Perl5</Title>
752
753 <Para>
754 The driver script is written in Perl, so you'll need to have this
755 installed too. However, the ghc binary distribution includes a
756 perl binary for you to make use of, should you not already have a
757 cygwin compatible one. Note: GHC does <Emphasis>not</Emphasis>
758 work with the ActiveState port of perl.
759 </Para>
760
761 </Sect3>  <!-- Perl -->
762
763 </Sect2>  <!-- Reqd software -->
764
765
766 <Sect2><Title>Installing GHC</Title>
767
768 <Para>
769 Download a GHC distribution:
770 </Para>
771
772 <VariableList>
773
774 <VarListEntry>
775 <Term>ghc-4.08&mdash;InstallShield installer, 20M: <ULink
776 URL="http://www.haskell.org/ghc/dist/ghc-4-08.exe">http</ULink>
777 </Term>
778
779 <ListItem>
780 <Para>
781 (The version number may change.) It is packaged up using an installer that should be familiar-looking to Windows users.
782 </Para>
783
784 <Para>
785 Note: The cygwin support for long file names containing
786 spaces is not 100%, so make sure that you install ghc in a directory
787 that has no embedded spaces (i.e., resist the temptation to put it
788 in <Filename>/Program Files/</Filename>!)
789 </Para>
790
791 <Para>
792 When the installer has completed, make sure you add the location of the
793 ghc <Filename>bin/</Filename> directory to your path (i.e.
794 <Filename>/path/to/wherever/ghc-4.08/bin </Filename>).
795 You need to do this in order to bring the various GHC DLLs into scope;
796 if not, then you need to copy the DLLs into a directory that is (the
797 system directory, for example).
798 </Para>
799
800 <Para>
801 Note: If you haven't got perl already installed, you will have to manually
802 copy the <Filename>perl.exe</Filename> binary from the ghc
803 <Filename>bin/</Filename> into your <Filename>/bin</Filename> directory
804 before continuing&mdash;the installer will not currently do this.
805 </Para>
806 </ListItem>
807
808 </VarListEntry>
809
810 </VariableList>
811
812 <Para>
813 Make sure that you set all the environment variables described above
814 under Cygwin installation, including <Constant>TMPDIR</Constant>
815 </Para>
816 <Para>
817 To test the fruits of your labour, try now to compile a simple
818 Haskell program:
819 </Para>
820
821 <Screen>
822 bash$ cat main.hs
823 module Main(main) where
824
825 main = putStrLn "Hello, world!"
826 bash$ /path/to/the/ghc/bin/directory/ghc-4.08 -o main main.hs
827 ..
828 bash$ ./main
829 Hello, world!
830 bash$ </Screen>
831
832 <Para>
833 OK, assuming that worked, you're all set. Go forth and write useful
834 Haskell programs :-) If not, consult the installation FAQ (<XRef LinkEnd="winfaq">); if that still doesn't help then please report the problems you're experiencing (see <Xref LinkEnd="wrong">).
835 </Para>
836
837 <Para>
838 Further information on using GHC under Windows can be found in <ULink URL="http://www.dcs.gla.ac.uk/~sof/ghc-win32.html">Sigbj&oslash;rn Finne's pages</ULink>. Note: ignore the installation instructions, which are rather out of date; the <Emphasis>Miscellaneous</Emphasis> section at the bottom of the page is of most interest, covering topics beyond the scope of this manual.
839 </Para>
840
841 </Sect2>
842
843
844 <Sect2 id="winfaq"><title>Installing ghc-win32 FAQ</title>
845
846 <QandASet>
847
848 <QandAEntry>
849
850 <Question>
851 <Para>
852 Invoking ghc doesn't seem to do anything, it immediately returns without having compiled the input file.
853 </Para>
854 </Question>
855
856 <Answer>
857 <Para>
858 One cause of this is that <Filename>/bin/sh</Filename> is missing. To verify, open up a
859 bash session and type <Command>ls -l /bin/sh.exe</Command>. If <Filename>sh.exe</Filename> is 
860 reported as not being there, copy <Filename>bash.exe</Filename> (which you'll find
861 inside the cygwin installation tree as <Filename>H-i586-cygwin32/bin/bash.exe</Filename>)
862 to <Filename>/bin/sh.exe</Filename>.
863 </Para>
864
865 <Para>
866 All being well, ghc should then start to function.
867 </Para>
868 </Answer>
869
870 </QandAEntry>
871
872 <QandAEntry>
873
874 <Question>
875 <Para>
876 I'm having trouble with symlinks.
877 </Para>
878 </Question>
879
880 <Answer>
881 <Para>
882 Symlinks only work under Cygwin (<Xref LinkEnd="sec-install">), so binaries
883 not linked to the Cygwin DLL, in particular those built for Mingwin, will not
884 work with symlinks.
885 </Para>
886 </Answer>
887
888 </QandAEntry>
889
890 <QandAEntry>
891
892 <Question>
893 <Para>
894 I'm having trouble with <Option>-static</Option>.
895 </Para>
896 </Question>
897
898 <Answer>
899 <Para>
900 Static linking is no longer supported under Windows, and probably won't work.
901 </Para>
902 </Answer>
903
904 </QandAEntry>
905
906 <QandAEntry>
907
908 <Question>
909 <Para>
910 I'm getting ``permission denied'' messages from <Command>rm</Command> or
911 <Command>mv</Command>.
912 </Para>
913 </Question>
914
915 <Answer>
916 <Para>
917 This can have various causes: trying to rename a directory when an Explorer
918 window is open on it tends to fail. Closing the window generally cures the
919 problem, but sometimes its cause is more mysterious, and logging off and back
920 on or rebooting may be the quickest cure.
921 </Para>
922 </Answer>
923
924 </QandAEntry>
925
926 <QandAEntry>
927
928 <Question>
929 <Para>
930 I get errors when trying to build GHC 4.08 with GHC 4.05.
931 </Para>
932 </Question>
933
934 <Answer> <Para> This seems to work better if you don't use
935 <Option>-O</Option> in <Constant>GhcHcOpts</Constant>. It's a bug in 4.05,
936 unfortunately. Anyway, better to install 4.08 binaries and use those.
937 </Para> </Answer>
938
939 </QandAEntry>
940
941 <!--
942 <QandAEntry>
943
944 <Question>
945 <Para>
946 When compiling up the <Literal>Hello World</Literal> example, the following happens:
947 </Para>
948
949 <Screen>
950 bash$ /ghc/ghc-4.05/bin/ghc-4.05 main.hs
951 &lt;stdin&gt;:0:25: Character literal '{-# LINE 1 "main.hs" -}' too long
952 &lt;stdin&gt;:0:25:  on input: "'"
953 bash$ </Screen>
954
955 <Para>
956 or
957 </Para>
958
959 <Screen>
960 bash$ /ghc/ghc-4.05/bin/ghc-4.05 main.hs
961 Program too big fit into memory under NT
962 bash$ </Screen>
963 </Question>
964
965 <Answer>
966 <Para>
967 The cause of this is that you're using a version of <Command>perl</Command> that employs the Microsoft <Command>cmd</Command>/<Command>command</Command> shell when launching sub-processes to execute <Function>system()</Function> calls.
968 </Para>
969
970 <Para>
971 The GHC driver really needs a <Command>perl</Command> which uses a `UNIX'y  shell instead, so
972 make sure that the version you're using is of an compatible ilk. In particular, 
973 if <Command>perl -v</Command> reports that you've got a copy of the (otherwise fine) port
974 of perl done by ActiveState, you're in trouble.
975 </Para>
976
977 <Para>
978 If you're stuck with an incompatible <Command>perl</Command>, the GHC installation comes with a very basic <Command>perl</Command> binary for you to use. Simply copy it into the <Command>/bin</Command> directory.
979 </Para>
980
981 <Para>
982 Notice that copying <Filename>perl.exe</Filename> into <Filename>/bin</Filename> will not cause
983 the GHC install to suddenly start functioning. If you don't want to
984 re-run the InstallShield installer again, you need to edit the following
985 files within the directory tree that the installer created:
986 </Para>
987
988 <Screen>
989 bin/ghc-4.xx    where xx is the minor release number
990 bin/stat2resid
991 bin/hstags
992 lib/mkdependHS</Screen>
993
994 <Para>
995 For each of these files, you need to edit the first line from instead
996 saying <Command>#!/path/to/your/other/perl/install</Command> to <Command>#!/bin/perl</Command>.
997 Once that is done, try compiling up the Hello, World example again.
998 </Para>
999
1000 <Para>
1001 Should you want to pick up a complete installation of a ghc-friendly port
1002 of perl instead, a <ULink URL="http://cygutils.netpedia.net/">cygwin port</ULink> is available.
1003 </Para>
1004 </Answer>
1005
1006 </QandAEntry>
1007 -->
1008
1009 </QandASet>
1010
1011 </Sect2>
1012
1013 </Sect1>
1014
1015
1016 <Sect1 id="building-docs">
1017 <Title>Building the documentation</Title>
1018
1019 <Para>
1020 We use the DocBook DTD, which is widely used. Most shrink-wrapped distributions seem to be broken in one way or another; thanks to heroic efforts by Sven Panne and Manuel Chakravarty, we now support most of them, plus properly installed versions.
1021 </Para>
1022
1023 <Para>
1024 Instructions on installing and configuring the DocBook tools follow.
1025 </Para>
1026
1027 <Sect2>
1028 <Title>Installing the DocBook tools from RPMs</Title>
1029
1030 <Para>
1031 If you're using a system that can handle RedHat RPM packages, you can
1032 probably use the <ULink
1033 URL="http://sourceware.cygnus.com/docbook-tools/">Cygnus DocBook
1034 tools</ULink>, which is the most shrink-wrapped SGML suite that we could
1035 find. You need all the RPMs except for psgml (i.e.
1036 <Filename>docbook</Filename>, <Filename>jade</Filename>,
1037 <Filename>jadetex</Filename>, <Filename>sgmlcommon</Filename> and
1038 <Filename>stylesheets</Filename>). Note that most of these RPMs are
1039 architecture neutral, so are likely to be found in a
1040 <Filename>noarch</Filename> directory. The SuSE RPMs also work; the RedHat ones <Emphasis>don't</Emphasis> at the moment.
1041 </Para>
1042
1043 </Sect2>
1044
1045
1046 <Sect2>
1047 <Title>Installing from binaries on Windows</Title>
1048
1049 <Para>
1050 It's a good idea to use Norman Walsh's <ULink
1051 URL="http://nwalsh.com/docbook/dsssl/doc/install.html">installation
1052 notes</ULink> as a guide. You should get version
1053 3.1 of DocBook, and note that his file <Filename>test.sgm</Filename> won't
1054 work, as it needs version 3.0. You should unpack Jade into <Filename>\Jade</Filename>, along with the entities, DocBook into <Filename>\docbook</Filename>, and the DocBook stylesheets into <Filename>\docbook\stylesheets</Filename> (so they actually end up in <Filename>\docbook\stylesheets\docbook</Filename>).
1055 </Para>
1056
1057 </Sect2>
1058
1059
1060 <Sect2>
1061 <Title>Installing the DocBook tools from source</Title>
1062
1063 <Sect3>
1064 <Title>Jade</Title>
1065
1066 <Para>
1067 Install <ULink URL="http://openjade.sourceforge.net/">OpenJade</ULink> (Windows binaries are available as well as sources). If you want DVI, PS, or PDF then install JadeTeX from the <Filename>dsssl</Filename>
1068 subdirectory. (If you get the error:
1069
1070 <Screen>
1071 ! LaTeX Error: Unknown option implicit=false' for package hyperref'.
1072 </Screen>
1073
1074 your version of <Command>hyperref</Command> is out of date; download it from
1075 CTAN (<Filename>macros/latex/contrib/supported/hyperref</Filename>), and
1076 make it, ensuring that you have first removed or renamed your old copy. If
1077 you start getting file not found errors when making the test for
1078 <Command>hyperref</Command>, you can abort at that point and proceed
1079 straight to <Command>make install</Command>, or enter them as
1080 <Filename>../</Filename><Emphasis>filename</Emphasis>.)
1081 </Para>
1082
1083 <Para>
1084 Make links from <Filename>virtex</Filename> to <Filename>jadetex</Filename>
1085 and <Filename>pdfvirtex</Filename> to <Filename>pdfjadetex</Filename>
1086 (otherwise DVI, PostScript and PDF output will not work). Copy
1087 <Filename>dsssl/*.{dtd,dsl}</Filename> and <Filename>catalog</Filename> to <Filename>/usr/[local/]lib/sgml</Filename>.
1088 </Para>
1089
1090 </Sect3>
1091
1092 <Sect3>
1093 <Title>DocBook and the DocBook stylesheets</Title>
1094
1095 <Para>
1096 Get a Zip of <ULink
1097 URL="http://www.oasis-open.org/docbook/sgml/3.1/index.html">DocBook</ULink> 
1098 and install the contents in <Filename>/usr/[local/]/lib/sgml</Filename>.
1099 </Para>
1100
1101 <Para>
1102 Get the <ULink URL="http://nwalsh.com/docbook/dsssl/">DocBook
1103 stylesheets</ULink> and install in
1104 <Filename>/usr/[local/]lib/sgml/stylesheets</Filename> (thereby creating a
1105 subdirectory docbook). For indexing, copy or link <Filename>collateindex.pl</Filename> from the DocBook stylesheets archive in <Filename>bin</Filename> into a directory on your <Constant>PATH</Constant>.
1106 </Para>
1107
1108 <Para>
1109 Download the <ULink
1110 URL="http://www.oasis-open.org/cover/ISOEnts.zip">ISO
1111 entities</ULink> into <Filename>/usr/[local/]lib/sgml</Filename>.
1112 </Para>
1113
1114 </Sect3>
1115
1116 </Sect2>
1117
1118 <Sect2>
1119 <Title>Configuring the DocBook tools</Title>
1120
1121 <Para>
1122 Once the DocBook tools are installed, the configure script will detect them and set up the build system accordingly. If you have a system that isn't supported, let us know, and we'll try to help.
1123 </Para>
1124
1125 </Sect2>
1126
1127 <Sect2>
1128 <Title>Remaining problems</Title>
1129
1130 <Para>
1131 If you install from source, you'll get a pile of warnings of the form
1132
1133 <Screen>DTDDECL catalog entries are not supported</Screen>
1134
1135 every time you build anything. These can safely be ignored, but if you find them tedious you can get rid of them by removing all the <Constant>DTDDECL</Constant> entries from <Filename>docbook.cat</Filename>.
1136 </Para>
1137
1138 </Sect2>
1139
1140 </Sect1>
1141
1142 </Chapter>
1143
1144 <!-- Emacs stuff:
1145      ;;; Local Variables: ***
1146      ;;; mode: sgml ***
1147      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
1148      ;;; End: ***
1149  -->