[project @ 2000-07-20 10:34:42 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. 70M of disk space. The size of the
518 installed GHC distribution is just(!) 17M, the rest is needed by
519 supporting software.
520 </Para>
521
522 <Para>
523 To run GHC comfortably, your machine should have at least 32M of memory.
524 </Para>
525
526 </Sect2>
527
528
529 <Sect2 id="sec-required"><Title>Software required</Title>
530
531 <Para>
532 You need two chunks of software other than GHC itself: the Cygwin toolchain, and Perl.  Here's how to get and install them.
533 </Para>
534
535 <Sect3><Title>The cygwin toolchain (beta20.1)</Title>
536
537 <Para>
538 GHC depends at the moment on the cygwin tools to operate, which
539 dresses up the Win32 environment into something more UNIX-like.
540 (notably, it provides <Command>gcc</Command>, <Command>as</Command> and <Command>ld</Command>),
541 so you'll need to install these tools first. You also need
542 Cygwin to use CVS. (We don't yet support later versions of Cygwin.)
543 </Para>
544
545 <Para>
546 Important grungy information about Cygwin:
547 </Para>
548
549 <ItemizedList>
550
551 <ListItem>
552 <Para>
553 Cygwin doesn't deal well with filenames that include
554 spaces. "<Filename>Program Files</Filename>" and "<Filename>Local files</Filename>" are
555 common gotchas.
556 </Para>
557 </ListItem>
558
559 <ListItem>
560 <Para>
561 Cygwin implements a symbolic link as a text file with some
562 magical text in it.  So programs that don't use Cygwin's
563 I/O libraries won't recognise such files as symlinks.  
564 In particular, programs compiled by GHC are meant to be runnable
565 without having Cygwin, so they don't use the Cygwin library, so
566 they don't recognise symlinks.
567 </Para>
568 </ListItem>
569
570 </ItemizedList>
571
572 <Para>
573 Here's how to install Cygwin.
574 </Para>
575
576 <ItemizedList>
577
578 <ListItem>
579 <Para>
580 Download cygwin, beta20.1 (<filename>full.exe</filename>) from
581 <ULink URL="http://sourceware.cygnus.com/cygwin/">sourceware.cygnus.com</ULink>
582 Install this somewhere locally.
583 </Para>
584 </ListItem>
585
586 <ListItem>
587 <Para>
588 Create the following directories (if they aren't already there):
589 </Para>
590
591 <ItemizedList>
592 <ListItem><Para><Filename>c:/etc</Filename></Para></ListItem>
593 <ListItem><Para><Filename>c:/bin</Filename></Para></ListItem>
594 <ListItem><Para><Filename>c:/usr/local/bin</Filename></Para></ListItem>
595 </ItemizedList>
596
597 <Para>
598 (using <Command>mkdir -p /bin</Command>, etc.)
599 </Para>
600 </ListItem>
601
602 <ListItem>
603 <Para>
604 Copy <Filename>bash.exe</Filename> from the <Filename>bin</Filename>
605 directory of the cygwin tree
606 (<Filename>cygwin-b20/H-i586-cygwin32/bin/bash.exe</Filename>) to
607 <Filename>/bin</Filename> as <Filename>sh.exe</Filename>.  You might
608 think that it was easier to use bash directly from it original Cygwin
609 directory, but (a) some UNIX utils have got
610 <Filename>/bin/sh</Filename> hardwired in, and (b) the path following
611 <Literal>#!</Literal> is limited to 32 characters.
612 </Para>
613 </ListItem>
614
615 <ListItem>
616 <Para>
617 If you're an Emacs user and want to be able to run <Command>bash</Command>
618 from within a shell buffer, see the <ULink URL="http://www.cs.washington.edu/homes/voelker/ntemacs.html">NT Emacs home page</ULink> for
619 instructions on how to set this up.
620 </Para>
621 </ListItem>
622
623 </ItemizedList>
624
625 </Sect3>
626
627
628 <Sect3><Title>Environment variables</Title>
629
630 <Para>
631 In case you don't already know how to set environment variables on a Windows
632 machine, here's how. On WinNT/Win2k, to edit your <Constant>PATH</Constant>
633 variable (for example), do the following:
634 </Para>
635
636 <ItemizedList>
637 <ListItem><Para>Press Start/Settings/Control Panels</Para></ListItem>
638 <ListItem><Para>Double-click System</Para></ListItem>
639 <ListItem><Para>Press Advanced</Para></ListItem>
640 <ListItem><Para>Press Environment Variables</Para></ListItem>
641 <ListItem><Para>Under System Variables, select <Constant>PATH</Constant></Para></ListItem>
642 <ListItem><Para>Press Edit</Para></ListItem>
643 <ListItem><Para>Add "<Filename>;C:/whatever/</Filename>" to the end of the string (for example)</Para></ListItem>
644 <ListItem><Para>Press OK</Para></ListItem>
645 </ItemizedList>
646
647 <Para>
648 Some environment variables are &ldquo;user variables&rdquo; and
649 some are &ldquo;system variables&rdquo;.  I'm not sure of the difference
650 but both are changed though the same dialogue.
651 </Para>
652
653 <Para>
654 In addition, when running <Command>bash</Command>
655 you can set environment variables in your <Filename>.bashrc</Filename> file.
656 But it is better to set your environment variables from the
657 control panel (they get inherited by bash) because then they are visible
658 to applications that aren't started by bash.  For example,
659 when you're invoking CVS (and ssh) via Emacs keybindings;
660 it invokes <Filename>cvs.exe</Filename> without going via bash.
661 </Para>
662
663 <Para>
664 On a Win9x machine you need to edit <Filename>autoexec.bat</Filename> using
665 <Filename>Windows/system/Sysedit</Filename>.  You must reboot to make
666 the new settings take effect.
667 </Para>
668
669 <Para>
670 The following environment variables must be set:
671 </Para>
672
673 <Para>
674 <InformalTable>
675 <TGroup cols="2">
676 <ColSpec Align="Left" Colsep="0">
677 <ColSpec Align="Left" Colsep="0">
678 <TBody>
679
680 <Row>
681 <Entry><Constant>PATH</Constant></Entry>
682 <Entry>System</Entry>
683 <Entry><Para>
684 Add <Filename>C:/cygnus/cygwin-b20/H-i586-cygwin32/bin</Filename>.
685 <Command>bash</Command> needs this, and when it is invoked from <Filename>/bin</Filename> it can't
686 find it. <Filename>c:/bin</Filename> and <Filename>c:/usr/local/bin</Filename> should also be added.
687 </Para></Entry>
688 </Row>
689
690 <Row>
691 <Entry><Constant>SHELL</Constant></Entry>
692 <Entry>User</Entry>
693 <Entry><Para>
694 <Filename>c:/bin/sh</Filename>.
695 </Para></Entry>
696 </Row>
697
698 <Row>
699 <Entry><Constant>HOME</Constant></Entry>
700 <Entry>User</Entry>
701 <Entry><Para>
702 Set to point to your home directory.  This is where, for example,
703 <Command>bash</Command> will look for your <Filename>.bashrc</Filename>
704 file.
705 </Para></Entry>
706 </Row>
707
708 <Row>
709 <Entry><Constant>MAKE_MODE</Constant></Entry>
710 <Entry>User</Entry>
711 <Entry><Para>
712 Set to <Literal>UNIX</Literal>.  If you don't do
713 this you get very weird messages when you type `<Command>make</Command>', such as:
714 </Para><Screen>
715 /c: /c: No such file or directory</Screen></Entry>
716 </Row>
717
718 <Row>
719 <Entry><Constant>TMPDIR</Constant></Entry>
720 <Entry>User</Entry>
721 <Entry><Para>
722 Set to <Filename>c:/tmp</Filename>. For some reason, Win2k invisibly sets
723 this variable to point to a temporary directory in your profile, that
724 contains embedded spaces.  If GHC sees the <Constant>TMPDIR</Constant>
725 variable set, it tries to use it for temporary files, but Cygwin
726 doesn't grok filenames with spaces, so disaster results.
727 </Para><Para>
728 Furthermore, it seems that <Constant>TMPDIR</Constant> must be set to a directory
729 in the same file system in which you invoke GHC.  Otherwise you get very werid messages
730 when you invoke GHC, such as:
731 <Screen>
732 does not exist
733 Action: openFile
734 Reason: file does not exist /tmp/ghc11068.cpp</Screen>
735 We think this is due to a bug in Cygwin.
736 </Para></Entry>
737 </Row>
738 </TBody>
739
740 </TGroup>
741 </InformalTable>
742 </Para>
743
744 <Para>
745 In addition, we've had problems in the past with certain environment
746 variables being set that seem to have bad effects on GHC. If you have
747 installed other systems ported from Unix, you might too. If you get weird
748 inexplicable failures to build GHC, then it might be worth weeding out unused
749 environment variables. Known culprits from the past include
750 <Constant>GCC_EXEC_PREFIX</Constant> and <Constant>INCLUDE</Constant>.
751 </Para>
752
753 </Sect3>
754
755
756 <Sect3><Title>Perl5</Title>
757
758 <Para>
759 The driver script is written in Perl, so you'll need to have this
760 installed too. However, the ghc binary distribution includes a
761 perl binary for you to make use of, should you not already have a
762 cygwin compatible one. Note: GHC does <Emphasis>not</Emphasis>
763 work with the ActiveState port of perl.
764 </Para>
765
766 </Sect3>  <!-- Perl -->
767
768 </Sect2>  <!-- Reqd software -->
769
770
771 <Sect2><Title>Installing GHC</Title>
772
773 <Para>
774 Download a GHC distribution:
775 </Para>
776
777 <VariableList>
778
779 <VarListEntry>
780 <Term>ghc-4.08&mdash;InstallShield installer, 20M: <ULink
781 URL="http://www.haskell.org/ghc/dist/ghc-4-08.exe">http</ULink>
782 </Term>
783
784 <ListItem>
785 <Para>
786 (The version number may change.) It is packaged up using an installer that should be familiar-looking to Windows users. Unpack and double click on <Filename>setup.exe</Filename>.
787 </Para>
788
789 <Para>
790 Note: The cygwin support for long file names containing
791 spaces is not 100%, so make sure that you install ghc in a directory
792 that has no embedded spaces (i.e., resist the temptation to put it
793 in <Filename>/Program Files/</Filename>!)
794 </Para>
795
796 <Para>
797 When the installer has completed its job, you may delete the
798 <Filename>ghcInstall</Filename> directory.
799 </Para>
800
801 <Para>
802 When the installer has completed, make sure you add the location of the
803 ghc <Filename>bin/</Filename> directory to your path (i.e.
804 <Filename>/path/to/wherever/ghc-4.08/bin </Filename>).
805 You need to do this in order to bring the various GHC DLLs into scope;
806 if not, then you need to copy the DLLs into a directory that is (the
807 system directory, for example).
808 </Para>
809
810 <Para>
811 Note: In case you haven't got perl already installed,
812 you will have to manually copy the <Filename>perl.exe</Filename> binary from the
813 ghc <Filename>bin/</Filename> into your <Filename>/bin</Filename> directory before continuing&mdash;the installer will not currently do this.
814 </Para>
815 </ListItem>
816
817 </VarListEntry>
818
819 </VariableList>
820
821 <Para>
822 Make sure that you set all the environment variables described above
823 under Cygwin installation, including <Constant>TMPDIR</Constant>
824 </Para>
825 <Para>
826 To test the fruits of your labour, try now to compile a simple
827 Haskell program:
828 </Para>
829
830 <Screen>
831 bash$ cat main.hs
832 module Main(main) where
833
834 main = putStrLn "Hello, world!"
835 bash$ /path/to/the/ghc/bin/directory/ghc-4.08 -o main main.hs
836 ..
837 bash$ ./main
838 Hello, world!
839 bash$ </Screen>
840
841 <Para>
842 OK, assuming that worked, you're all set. Go forth and write useful
843 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">).
844 </Para>
845
846 <Para>
847 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>.
848 </Para>
849
850 </Sect2>
851
852
853 <Sect2 id="winfaq"><title>Installing ghc-win32 FAQ</title>
854
855 <QandASet>
856
857 <QandAEntry>
858
859 <Question>
860 <Para>
861 Invoking ghc doesn't seem to do anything, it immediately returns without having compiled the input file.
862 </Para>
863 </Question>
864
865 <Answer>
866 <Para>
867 One cause of this is that <Filename>/bin/sh</Filename> is missing. To verify, open up a
868 bash session and type <Command>ls -l /bin/sh.exe</Command>. If <Filename>sh.exe</Filename> is 
869 reported as not being there, copy <Filename>bash.exe</Filename> (which you'll find
870 inside the cygwin installation tree as <Filename>H-i586-cygwin32/bin/bash.exe</Filename>)
871 to <Filename>/bin/sh.exe</Filename>.
872 </Para>
873
874 <Para>
875 All being well, ghc should then start to function.
876 </Para>
877 </Answer>
878
879 </QandAEntry>
880
881 <QandAEntry>
882
883 <Question>
884 <Para>
885 I'm having trouble with symlinks.
886 </Para>
887 </Question>
888
889 <Answer>
890 <Para>
891 Symlinks only work under Cygwin (<Xref LinkEnd="sec-install">), so binaries
892 not linked to the Cygwin DLL, in particular those built for Mingwin, will not
893 work with symlinks.
894 </Para>
895 </Answer>
896
897 </QandAEntry>
898
899 <QandAEntry>
900
901 <Question>
902 <Para>
903 I'm getting ``permission denied'' messages from <Command>rm</Command> or
904 <Command>mv</Command>.
905 </Para>
906 </Question>
907
908 <Answer>
909 <Para>
910 This can have various causes: trying to rename a directory when an Explorer
911 window is open on it tends to fail. Closing the window generally cures the
912 problem, but sometimes its cause is more mysterious, and logging off and back
913 on or rebooting may be the quickest cure.
914 </Para>
915 </Answer>
916
917 </QandAEntry>
918
919 <QandAEntry>
920
921 <Question>
922 <Para>
923 I get errors when trying to build GHC 4.07 with GHC 4.05.
924 </Para>
925 </Question>
926
927 <Answer>
928 <Para>
929 This seems to work better if you don't use <Option>-O</Option> in <Constant>GhcHcOpts</Constant>. It's a bug in 4.05, unfortunately. Anyway, better to install 4.07 binaries and use those.
930 </Para>
931 </Answer>
932
933 </QandAEntry>
934
935 <!--
936 <QandAEntry>
937
938 <Question>
939 <Para>
940 When compiling up the <Literal>Hello World</Literal> example, the following happens:
941 </Para>
942
943 <Screen>
944 bash$ /ghc/ghc-4.05/bin/ghc-4.05 main.hs
945 &lt;stdin&gt;:0:25: Character literal '{-# LINE 1 "main.hs" -}' too long
946 &lt;stdin&gt;:0:25:  on input: "'"
947 bash$ </Screen>
948
949 <Para>
950 or
951 </Para>
952
953 <Screen>
954 bash$ /ghc/ghc-4.05/bin/ghc-4.05 main.hs
955 Program too big fit into memory under NT
956 bash$ </Screen>
957 </Question>
958
959 <Answer>
960 <Para>
961 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.
962 </Para>
963
964 <Para>
965 The GHC driver really needs a <Command>perl</Command> which uses a `UNIX'y  shell instead, so
966 make sure that the version you're using is of an compatible ilk. In particular, 
967 if <Command>perl -v</Command> reports that you've got a copy of the (otherwise fine) port
968 of perl done by ActiveState, you're in trouble.
969 </Para>
970
971 <Para>
972 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.
973 </Para>
974
975 <Para>
976 Notice that copying <Filename>perl.exe</Filename> into <Filename>/bin</Filename> will not cause
977 the GHC install to suddenly start functioning. If you don't want to
978 re-run the InstallShield installer again, you need to edit the following
979 files within the directory tree that the installer created:
980 </Para>
981
982 <Screen>
983 bin/ghc-4.xx    where xx is the minor release number
984 bin/stat2resid
985 bin/hstags
986 lib/mkdependHS</Screen>
987
988 <Para>
989 For each of these files, you need to edit the first line from instead
990 saying <Command>#!/path/to/your/other/perl/install</Command> to <Command>#!/bin/perl</Command>.
991 Once that is done, try compiling up the Hello, World example again.
992 </Para>
993
994 <Para>
995 Should you want to pick up a complete installation of a ghc-friendly port
996 of perl instead, a <ULink URL="http://cygutils.netpedia.net/">cygwin port</ULink> is available.
997 </Para>
998 </Answer>
999
1000 </QandAEntry>
1001 -->
1002
1003 </QandASet>
1004
1005 </Sect2>
1006
1007 </Sect1>
1008
1009
1010 <Sect1 id="building-docs">
1011 <Title>Building the documentation</Title>
1012
1013 <Para>
1014 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.
1015 </Para>
1016
1017 <Para>
1018 Instructions on installing and configuring the DocBook tools follow.
1019 </Para>
1020
1021 <Sect2>
1022 <Title>Installing the DocBook tools from RPMs</Title>
1023
1024 <Para>
1025 If you're using a system that can handle RedHat RPM packages, you can
1026 probably use the <ULink
1027 URL="http://sourceware.cygnus.com/docbook-tools/">Cygnus DocBook
1028 tools</ULink>, which is the most shrink-wrapped SGML suite that we could
1029 find. You need all the RPMs except for psgml (i.e.
1030 <Filename>docbook</Filename>, <Filename>jade</Filename>,
1031 <Filename>jadetex</Filename>, <Filename>sgmlcommon</Filename> and
1032 <Filename>stylesheets</Filename>). Note that most of these RPMs are
1033 architecture neutral, so are likely to be found in a
1034 <Filename>noarch</Filename> directory. The SuSE RPMs also work; the RedHat ones <Emphasis>don't</Emphasis> at the moment.
1035 </Para>
1036
1037 </Sect2>
1038
1039
1040 <Sect2>
1041 <Title>Installing from binaries on Windows</Title>
1042
1043 <Para>
1044 It's a good idea to use Norman Walsh's <ULink
1045 URL="http://nwalsh.com/docbook/dsssl/doc/install.html">installation
1046 notes</ULink> as a guide. You should get version
1047 3.1 of DocBook, and note that his file <Filename>test.sgm</Filename> won't
1048 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>).
1049 </Para>
1050
1051 </Sect2>
1052
1053
1054 <Sect2>
1055 <Title>Installing the DocBook tools from source</Title>
1056
1057 <Sect3>
1058 <Title>Jade</Title>
1059
1060 <Para>
1061 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>
1062 subdirectory. (If you get the error:
1063
1064 <Screen>
1065 ! LaTeX Error: Unknown option implicit=false' for package hyperref'.
1066 </Screen>
1067
1068 your version of <Command>hyperref</Command> is out of date; download it from
1069 CTAN (<Filename>macros/latex/contrib/supported/hyperref</Filename>), and
1070 make it, ensuring that you have first removed or renamed your old copy. If
1071 you start getting file not found errors when making the test for
1072 <Command>hyperref</Command>, you can abort at that point and proceed
1073 straight to <Command>make install</Command>, or enter them as
1074 <Filename>../</Filename><Emphasis>filename</Emphasis>.)
1075 </Para>
1076
1077 <Para>
1078 Make links from <Filename>virtex</Filename> to <Filename>jadetex</Filename>
1079 and <Filename>pdfvirtex</Filename> to <Filename>pdfjadetex</Filename>
1080 (otherwise DVI, PostScript and PDF output will not work). Copy
1081 <Filename>dsssl/*.{dtd,dsl}</Filename> and <Filename>catalog</Filename> to <Filename>/usr/[local/]lib/sgml</Filename>.
1082 </Para>
1083
1084 </Sect3>
1085
1086 <Sect3>
1087 <Title>DocBook and the DocBook stylesheets</Title>
1088
1089 <Para>
1090 Get a Zip of <ULink
1091 URL="http://www.oasis-open.org/docbook/sgml/3.1/index.html">DocBook</ULink> 
1092 and install the contents in <Filename>/usr/[local/]/lib/sgml</Filename>.
1093 </Para>
1094
1095 <Para>
1096 Get the <ULink URL="http://nwalsh.com/docbook/dsssl/">DocBook
1097 stylesheets</ULink> and install in
1098 <Filename>/usr/[local/]lib/sgml/stylesheets</Filename> (thereby creating a
1099 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>.
1100 </Para>
1101
1102 <Para>
1103 Download the <ULink
1104 URL="http://www.oasis-open.org/cover/ISOEnts.zip">ISO
1105 entities</ULink> into <Filename>/usr/[local/]lib/sgml</Filename>.
1106 </Para>
1107
1108 </Sect3>
1109
1110 </Sect2>
1111
1112 <Sect2>
1113 <Title>Configuring the DocBook tools</Title>
1114
1115 <Para>
1116 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.
1117 </Para>
1118
1119 </Sect2>
1120
1121 <Sect2>
1122 <Title>Remaining problems</Title>
1123
1124 <Para>
1125 If you install from source, you'll get a pile of warnings of the form
1126
1127 <Screen>DTDDECL catalog entries are not supported</Screen>
1128
1129 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>.
1130 </Para>
1131
1132 </Sect2>
1133
1134 </Sect1>
1135
1136 </Chapter>
1137
1138 <!-- Emacs stuff:
1139      ;;; Local Variables: ***
1140      ;;; mode: sgml ***
1141      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
1142      ;;; End: ***
1143  -->