[project @ 2000-08-09 10:59:12 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
686 <Filename>/bin</Filename> it can't find it. <Filename>c:/bin</Filename> and
687 <Filename>c:/usr/local/bin</Filename> should also be added. These should all
688 come <Emphasis>before</Emphasis> the Windows system directories (e.g.
689 <Filename>WINNT\system32</Filename>). You might want to set them in your
690 <Filename>.bashrc</Filename> rather than in the system-wide
691 <Constant>PATH</Constant>.
692 </Para></Entry>
693 </Row>
694
695 <Row>
696 <Entry><Constant>SHELL</Constant></Entry>
697 <Entry>User</Entry>
698 <Entry><Para>
699 <Filename>c:/bin/sh</Filename>.
700 </Para></Entry>
701 </Row>
702
703 <Row>
704 <Entry><Constant>HOME</Constant></Entry>
705 <Entry>User</Entry>
706 <Entry><Para>
707 Set to point to your home directory.  This is where, for example,
708 <Command>bash</Command> will look for your <Filename>.bashrc</Filename>
709 file.
710 </Para></Entry>
711 </Row>
712
713 <Row>
714 <Entry><Constant>MAKE_MODE</Constant></Entry>
715 <Entry>User</Entry>
716 <Entry><Para>
717 Set to <Literal>UNIX</Literal>.  If you don't do
718 this you get very weird messages when you type `<Command>make</Command>', such as:
719 </Para><Screen>
720 /c: /c: No such file or directory</Screen></Entry>
721 </Row>
722
723 <Row>
724 <Entry><Constant>TMPDIR</Constant></Entry>
725 <Entry>User</Entry>
726 <Entry><Para>
727 Set to <Filename>c:/tmp</Filename>. For some reason, Win2k invisibly sets
728 this variable to point to a temporary directory in your profile, that
729 contains embedded spaces.  If GHC sees the <Constant>TMPDIR</Constant>
730 variable set, it tries to use it for temporary files, but Cygwin
731 doesn't grok filenames with spaces, so disaster results.
732 </Para><Para>
733 Furthermore, it seems that <Constant>TMPDIR</Constant> must be set to a directory
734 in the same file system in which you invoke GHC.  Otherwise you get very weird messages
735 when you invoke GHC, such as:
736 <Screen>
737 does not exist
738 Action: openFile
739 Reason: file does not exist /tmp/ghc11068.cpp</Screen>
740 We think this is due to a bug in Cygwin.
741 </Para></Entry>
742 </Row>
743 </TBody>
744
745 </TGroup>
746 </InformalTable>
747 </Para>
748
749 <Para>
750 In addition, we've had problems in the past with certain environment
751 variables being set that seem to have bad effects on GHC. If you have
752 installed other systems ported from Unix, you might too. If you get weird
753 inexplicable failures to build GHC, then it might be worth weeding out unused
754 environment variables. Known culprits from the past include
755 <Constant>GCC_EXEC_PREFIX</Constant> and <Constant>INCLUDE</Constant>.
756 </Para>
757
758 </Sect3>
759
760
761 <Sect3><Title>Perl5</Title>
762
763 <Para>
764 The driver script is written in Perl, so you'll need to have this
765 installed too. However, the ghc binary distribution includes a
766 perl binary for you to make use of, should you not already have a
767 cygwin compatible one. Note: GHC does <Emphasis>not</Emphasis>
768 work with the ActiveState port of perl.
769 </Para>
770
771 </Sect3>  <!-- Perl -->
772
773 </Sect2>  <!-- Reqd software -->
774
775
776 <Sect2><Title>Installing GHC</Title>
777
778 <Para>
779 Download a GHC distribution:
780 </Para>
781
782 <VariableList>
783
784 <VarListEntry>
785 <Term>ghc-4.08&mdash;InstallShield installer, 20M: <ULink
786 URL="http://www.haskell.org/ghc/dist/ghc-4-08.exe">http</ULink>
787 </Term>
788
789 <ListItem>
790 <Para>
791 (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>.
792 </Para>
793
794 <Para>
795 Note: The cygwin support for long file names containing
796 spaces is not 100%, so make sure that you install ghc in a directory
797 that has no embedded spaces (i.e., resist the temptation to put it
798 in <Filename>/Program Files/</Filename>!)
799 </Para>
800
801 <Para>
802 When the installer has completed its job, you may delete the
803 <Filename>ghcInstall</Filename> directory.
804 </Para>
805
806 <Para>
807 When the installer has completed, make sure you add the location of the
808 ghc <Filename>bin/</Filename> directory to your path (i.e.
809 <Filename>/path/to/wherever/ghc-4.08/bin </Filename>).
810 You need to do this in order to bring the various GHC DLLs into scope;
811 if not, then you need to copy the DLLs into a directory that is (the
812 system directory, for example).
813 </Para>
814
815 <Para>
816 Note: In case you haven't got perl already installed,
817 you will have to manually copy the <Filename>perl.exe</Filename> binary from the
818 ghc <Filename>bin/</Filename> into your <Filename>/bin</Filename> directory before continuing&mdash;the installer will not currently do this.
819 </Para>
820 </ListItem>
821
822 </VarListEntry>
823
824 </VariableList>
825
826 <Para>
827 Make sure that you set all the environment variables described above
828 under Cygwin installation, including <Constant>TMPDIR</Constant>
829 </Para>
830 <Para>
831 To test the fruits of your labour, try now to compile a simple
832 Haskell program:
833 </Para>
834
835 <Screen>
836 bash$ cat main.hs
837 module Main(main) where
838
839 main = putStrLn "Hello, world!"
840 bash$ /path/to/the/ghc/bin/directory/ghc-4.08 -o main main.hs
841 ..
842 bash$ ./main
843 Hello, world!
844 bash$ </Screen>
845
846 <Para>
847 OK, assuming that worked, you're all set. Go forth and write useful
848 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">).
849 </Para>
850
851 <Para>
852 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>.
853 </Para>
854
855 </Sect2>
856
857
858 <Sect2 id="winfaq"><title>Installing ghc-win32 FAQ</title>
859
860 <QandASet>
861
862 <QandAEntry>
863
864 <Question>
865 <Para>
866 Invoking ghc doesn't seem to do anything, it immediately returns without having compiled the input file.
867 </Para>
868 </Question>
869
870 <Answer>
871 <Para>
872 One cause of this is that <Filename>/bin/sh</Filename> is missing. To verify, open up a
873 bash session and type <Command>ls -l /bin/sh.exe</Command>. If <Filename>sh.exe</Filename> is 
874 reported as not being there, copy <Filename>bash.exe</Filename> (which you'll find
875 inside the cygwin installation tree as <Filename>H-i586-cygwin32/bin/bash.exe</Filename>)
876 to <Filename>/bin/sh.exe</Filename>.
877 </Para>
878
879 <Para>
880 All being well, ghc should then start to function.
881 </Para>
882 </Answer>
883
884 </QandAEntry>
885
886 <QandAEntry>
887
888 <Question>
889 <Para>
890 I'm having trouble with symlinks.
891 </Para>
892 </Question>
893
894 <Answer>
895 <Para>
896 Symlinks only work under Cygwin (<Xref LinkEnd="sec-install">), so binaries
897 not linked to the Cygwin DLL, in particular those built for Mingwin, will not
898 work with symlinks.
899 </Para>
900 </Answer>
901
902 </QandAEntry>
903
904 <QandAEntry>
905
906 <Question>
907 <Para>
908 I'm getting ``permission denied'' messages from <Command>rm</Command> or
909 <Command>mv</Command>.
910 </Para>
911 </Question>
912
913 <Answer>
914 <Para>
915 This can have various causes: trying to rename a directory when an Explorer
916 window is open on it tends to fail. Closing the window generally cures the
917 problem, but sometimes its cause is more mysterious, and logging off and back
918 on or rebooting may be the quickest cure.
919 </Para>
920 </Answer>
921
922 </QandAEntry>
923
924 <QandAEntry>
925
926 <Question>
927 <Para>
928 I get errors when trying to build GHC 4.08 with GHC 4.05.
929 </Para>
930 </Question>
931
932 <Answer> <Para> This seems to work better if you don't use
933 <Option>-O</Option> in <Constant>GhcHcOpts</Constant>. It's a bug in 4.05,
934 unfortunately. Anyway, better to install 4.08 binaries and use those.
935 </Para> </Answer>
936
937 </QandAEntry>
938
939 <!--
940 <QandAEntry>
941
942 <Question>
943 <Para>
944 When compiling up the <Literal>Hello World</Literal> example, the following happens:
945 </Para>
946
947 <Screen>
948 bash$ /ghc/ghc-4.05/bin/ghc-4.05 main.hs
949 &lt;stdin&gt;:0:25: Character literal '{-# LINE 1 "main.hs" -}' too long
950 &lt;stdin&gt;:0:25:  on input: "'"
951 bash$ </Screen>
952
953 <Para>
954 or
955 </Para>
956
957 <Screen>
958 bash$ /ghc/ghc-4.05/bin/ghc-4.05 main.hs
959 Program too big fit into memory under NT
960 bash$ </Screen>
961 </Question>
962
963 <Answer>
964 <Para>
965 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.
966 </Para>
967
968 <Para>
969 The GHC driver really needs a <Command>perl</Command> which uses a `UNIX'y  shell instead, so
970 make sure that the version you're using is of an compatible ilk. In particular, 
971 if <Command>perl -v</Command> reports that you've got a copy of the (otherwise fine) port
972 of perl done by ActiveState, you're in trouble.
973 </Para>
974
975 <Para>
976 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.
977 </Para>
978
979 <Para>
980 Notice that copying <Filename>perl.exe</Filename> into <Filename>/bin</Filename> will not cause
981 the GHC install to suddenly start functioning. If you don't want to
982 re-run the InstallShield installer again, you need to edit the following
983 files within the directory tree that the installer created:
984 </Para>
985
986 <Screen>
987 bin/ghc-4.xx    where xx is the minor release number
988 bin/stat2resid
989 bin/hstags
990 lib/mkdependHS</Screen>
991
992 <Para>
993 For each of these files, you need to edit the first line from instead
994 saying <Command>#!/path/to/your/other/perl/install</Command> to <Command>#!/bin/perl</Command>.
995 Once that is done, try compiling up the Hello, World example again.
996 </Para>
997
998 <Para>
999 Should you want to pick up a complete installation of a ghc-friendly port
1000 of perl instead, a <ULink URL="http://cygutils.netpedia.net/">cygwin port</ULink> is available.
1001 </Para>
1002 </Answer>
1003
1004 </QandAEntry>
1005 -->
1006
1007 </QandASet>
1008
1009 </Sect2>
1010
1011 </Sect1>
1012
1013
1014 <Sect1 id="building-docs">
1015 <Title>Building the documentation</Title>
1016
1017 <Para>
1018 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.
1019 </Para>
1020
1021 <Para>
1022 Instructions on installing and configuring the DocBook tools follow.
1023 </Para>
1024
1025 <Sect2>
1026 <Title>Installing the DocBook tools from RPMs</Title>
1027
1028 <Para>
1029 If you're using a system that can handle RedHat RPM packages, you can
1030 probably use the <ULink
1031 URL="http://sourceware.cygnus.com/docbook-tools/">Cygnus DocBook
1032 tools</ULink>, which is the most shrink-wrapped SGML suite that we could
1033 find. You need all the RPMs except for psgml (i.e.
1034 <Filename>docbook</Filename>, <Filename>jade</Filename>,
1035 <Filename>jadetex</Filename>, <Filename>sgmlcommon</Filename> and
1036 <Filename>stylesheets</Filename>). Note that most of these RPMs are
1037 architecture neutral, so are likely to be found in a
1038 <Filename>noarch</Filename> directory. The SuSE RPMs also work; the RedHat ones <Emphasis>don't</Emphasis> at the moment.
1039 </Para>
1040
1041 </Sect2>
1042
1043
1044 <Sect2>
1045 <Title>Installing from binaries on Windows</Title>
1046
1047 <Para>
1048 It's a good idea to use Norman Walsh's <ULink
1049 URL="http://nwalsh.com/docbook/dsssl/doc/install.html">installation
1050 notes</ULink> as a guide. You should get version
1051 3.1 of DocBook, and note that his file <Filename>test.sgm</Filename> won't
1052 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>).
1053 </Para>
1054
1055 </Sect2>
1056
1057
1058 <Sect2>
1059 <Title>Installing the DocBook tools from source</Title>
1060
1061 <Sect3>
1062 <Title>Jade</Title>
1063
1064 <Para>
1065 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>
1066 subdirectory. (If you get the error:
1067
1068 <Screen>
1069 ! LaTeX Error: Unknown option implicit=false' for package hyperref'.
1070 </Screen>
1071
1072 your version of <Command>hyperref</Command> is out of date; download it from
1073 CTAN (<Filename>macros/latex/contrib/supported/hyperref</Filename>), and
1074 make it, ensuring that you have first removed or renamed your old copy. If
1075 you start getting file not found errors when making the test for
1076 <Command>hyperref</Command>, you can abort at that point and proceed
1077 straight to <Command>make install</Command>, or enter them as
1078 <Filename>../</Filename><Emphasis>filename</Emphasis>.)
1079 </Para>
1080
1081 <Para>
1082 Make links from <Filename>virtex</Filename> to <Filename>jadetex</Filename>
1083 and <Filename>pdfvirtex</Filename> to <Filename>pdfjadetex</Filename>
1084 (otherwise DVI, PostScript and PDF output will not work). Copy
1085 <Filename>dsssl/*.{dtd,dsl}</Filename> and <Filename>catalog</Filename> to <Filename>/usr/[local/]lib/sgml</Filename>.
1086 </Para>
1087
1088 </Sect3>
1089
1090 <Sect3>
1091 <Title>DocBook and the DocBook stylesheets</Title>
1092
1093 <Para>
1094 Get a Zip of <ULink
1095 URL="http://www.oasis-open.org/docbook/sgml/3.1/index.html">DocBook</ULink> 
1096 and install the contents in <Filename>/usr/[local/]/lib/sgml</Filename>.
1097 </Para>
1098
1099 <Para>
1100 Get the <ULink URL="http://nwalsh.com/docbook/dsssl/">DocBook
1101 stylesheets</ULink> and install in
1102 <Filename>/usr/[local/]lib/sgml/stylesheets</Filename> (thereby creating a
1103 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>.
1104 </Para>
1105
1106 <Para>
1107 Download the <ULink
1108 URL="http://www.oasis-open.org/cover/ISOEnts.zip">ISO
1109 entities</ULink> into <Filename>/usr/[local/]lib/sgml</Filename>.
1110 </Para>
1111
1112 </Sect3>
1113
1114 </Sect2>
1115
1116 <Sect2>
1117 <Title>Configuring the DocBook tools</Title>
1118
1119 <Para>
1120 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.
1121 </Para>
1122
1123 </Sect2>
1124
1125 <Sect2>
1126 <Title>Remaining problems</Title>
1127
1128 <Para>
1129 If you install from source, you'll get a pile of warnings of the form
1130
1131 <Screen>DTDDECL catalog entries are not supported</Screen>
1132
1133 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>.
1134 </Para>
1135
1136 </Sect2>
1137
1138 </Sect1>
1139
1140 </Chapter>
1141
1142 <!-- Emacs stuff:
1143      ;;; Local Variables: ***
1144      ;;; mode: sgml ***
1145      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
1146      ;;; End: ***
1147  -->