[project @ 2005-02-14 17:00:31 by simonmar]
[ghc-hetmet.git] / docs / building / building.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3    "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
4
5 <article id="building-guide">
6
7 <articleinfo>
8
9 <title>Building the Glasgow Functional Programming Tools Suite</title>
10 <author><othername>The GHC Team</othername></author>
11 <address><email>glasgow-haskell-&lcub;users,bugs&rcub;@haskell.org</email></address>
12
13     <abstract>
14       <para>The Glasgow fptools suite is a collection of Functional
15       Programming related tools, including the Glasgow Haskell
16       Compiler (GHC).  The source code for the whole suite is kept in
17       a single CVS repository and shares a common build and
18       installation system.</para>
19
20       <para>This guide is intended for people who want to build or
21       modify programs from the Glasgow <literal>fptools</literal>
22       suite (as distinct from those who merely want to
23       <emphasis>run</emphasis> them). Installation instructions are
24       now provided in the user guide.</para>
25
26       <para>The bulk of this guide applies to building on Unix
27       systems; see <xref linkend="winbuild"/> for Windows notes.</para>
28     </abstract>
29
30 </articleinfo>
31
32
33   <sect1 id="sec-getting">
34     <title>Getting the sources</title>
35     
36     <para>You can get your hands on the <literal>fptools</literal>
37     in two ways:</para>
38
39     <variablelist>
40
41       <varlistentry>
42         <term><indexterm><primary>Source
43         distributions</primary></indexterm>Source distributions</term>
44         <listitem>
45           <para>You have a supported platform, but (a)&nbsp;you like
46           the warm fuzzy feeling of compiling things yourself;
47           (b)&nbsp;you want to build something ``extra&rdquo;&mdash;e.g., a
48           set of libraries with strictness-analysis turned off; or
49           (c)&nbsp;you want to hack on GHC yourself.</para>
50
51           <para>A source distribution contains complete sources for
52           one or more projects in the <literal>fptools</literal>
53           suite.  Not only that, but the more awkward
54           machine-independent steps are done for you.  For example, if
55           you don't have
56           <command>happy</command><indexterm><primary>happy</primary></indexterm>
57           you'll find it convenient that the source distribution
58           contains the result of running <command>happy</command> on
59           the parser specifications.  If you don't want to alter the
60           parser then this saves you having to find and install
61           <command>happy</command>. You will still need a working
62           version of GHC (version 5.x or later) on your machine in
63           order to compile (most of) the sources, however.</para>
64         </listitem>
65       </varlistentry>
66
67       <varlistentry>
68         <term>The CVS repository.<indexterm><primary>CVS repository</primary></indexterm></term>
69         <listitem>
70           <para>We make releases infrequently.  If you want more
71           up-to-the minute (but less tested) source code then you need
72           to get access to our CVS repository.</para>
73
74           <para>All the <literal>fptools</literal> source code is held
75           in a CVS repository. CVS is a pretty good source-code
76           control system, and best of all it works over the
77           network.</para>
78
79           <para>The repository holds source code only. It holds no
80           mechanically generated files at all.  So if you check out a
81           source tree from CVS you will need to install every utility
82           so that you can build all the derived files from
83           scratch.</para>
84
85           <para>More information about our CVS repository can be found
86           in <xref linkend="sec-cvs"/>.</para>
87         </listitem>
88       </varlistentry>
89     </variablelist>
90
91     <para>If you are going to do any building from sources (either
92     from a source distribution or the CVS repository) then you need to
93     read all of this manual in detail.</para>
94   </sect1>
95
96   <sect1 id="sec-cvs">
97     <title>Using the CVS repository</title>
98
99     <para>We use <ulink url="http://www.cvshome.org/">CVS</ulink> (Concurrent Version System) to keep track of our
100     sources for various software projects. CVS lets several people
101     work on the same software at the same time, allowing changes to be
102     checked in incrementally. </para>
103
104     <para>This section is a set of guidelines for how to use our CVS
105     repository, and will probably evolve in time. The main thing to
106     remember is that most mistakes can be undone, but if there's
107     anything you're not sure about feel free to bug the local CVS
108     meister (namely Jeff Lewis
109     <email>jlewis@galois.com</email>). </para>
110
111     <sect2 id="cvs-access">
112       <title>Getting access to the CVS Repository</title>
113
114       <para>You can access the repository in one of two ways:
115       read-only (<xref linkend="cvs-read-only"/>), or read-write (<xref
116       linkend="cvs-read-write"/>).</para>
117
118       <sect3 id="cvs-read-only">
119         <title>Remote Read-only CVS Access</title>
120
121         <para>Read-only access is available to anyone - there's no
122         need to ask us first.  With read-only CVS access you can do
123         anything except commit changes to the repository.  You can
124         make changes to your local tree, and still use CVS's merge
125         facility to keep your tree up to date, and you can generate
126         patches using 'cvs diff' in order to send to us for
127         inclusion. </para>
128
129         <para>To get read-only access to the repository:</para>
130
131         <orderedlist>
132           <listitem>
133             <para>Make sure that <application>cvs</application> is
134             installed on your machine.</para>
135           </listitem>
136           <listitem>
137             <para>Set your <literal>$CVSROOT</literal> environment variable to
138             <literal>:pserver:anoncvs@glass.cse.ogi.edu:/cvs</literal></para>
139             <para>If you set <literal>$CVSROOT</literal> in a shell script, be sure not to
140               have any trailing spaces on that line, otherwise CVS will respond with 
141               a perplexing message like
142               <screen>/cvs : no such repository</screen></para>
143           </listitem>
144           <listitem>
145             <para>Run the command</para>
146 <screen>$ cvs login</screen>
147             <para>The password is simply <literal>cvs</literal>.  This
148             sets up a file in your home directory called
149             <literal>.cvspass</literal>, which squirrels away the
150             dummy password, so you only need to do this step once.</para>
151           </listitem>
152
153           <listitem>
154             <para>Now go to <xref linkend="cvs-first"/>.</para>
155           </listitem>
156         </orderedlist>
157       </sect3>
158
159       <sect3 id="cvs-read-write">
160         <title>Remote Read-Write CVS Access</title>
161
162         <para>We generally supply read-write access to folk doing
163         serious development on some part of the source tree, when
164         going through us would be a pain. If you're developing some
165         feature, or think you have the time and inclination to fix
166         bugs in our sources, feel free to ask for read-write
167         access. There is a certain amount of responsibility that goes
168         with commit privileges; we are more likely to grant you access
169         if you've demonstrated your competence by sending us patches
170         via mail in the past.</para>
171
172         <para>To get remote read-write CVS access, you need to do the
173         following steps.</para>
174
175         <orderedlist>
176           <listitem>
177             <para>Make sure that <literal>cvs</literal> and
178             <literal>ssh</literal> are both installed on your
179             machine.</para>
180           </listitem>
181
182           <listitem>
183             <para>Generate a DSA private-key/public-key pair, thus:</para>
184 <screen>$ ssh-keygen -d</screen>
185             <para>(<literal>ssh-keygen</literal> comes with
186             <literal>ssh</literal>.)  Running <literal>ssh-keygen
187             -d</literal> creates the private and public keys in
188             <literal>$HOME/.ssh/id_dsa</literal> and
189             <literal>$HOME/.ssh/id_dsa.pub</literal> respectively
190             (assuming you accept the standard defaults).</para>
191
192             <para><literal>ssh-keygen -d</literal> will only work if
193             you have Version 2 <literal>ssh</literal> installed; it
194             will fail harmlessly otherwise.  If you only have Version
195             1 you can instead generate an RSA key pair using plain</para>
196 <screen>$ ssh-keygen</screen>
197
198             <para>Doing so creates the private and public RSA keys in
199             <literal>$HOME/.ssh/identity</literal> and
200             <literal>$HOME/.ssh/identity.pub</literal>
201             respectively.</para>
202
203             <para>[Deprecated.]  Incidentally, you can force a Version
204             2 <literal>ssh</literal> to use the Version 1 protocol by
205             creating <literal>$HOME/config</literal> with the
206             following in it:</para>
207 <programlisting>BatchMode Yes
208
209 Host cvs.haskell.org
210 Protocol 1</programlisting>
211
212             <para>In both cases, <literal>ssh-keygen</literal> will
213             ask for a <firstterm>passphrase</firstterm>.  The
214             passphrase is a password that protects your private key.
215             In response to the 'Enter passphrase' question, you can
216             either:</para>
217             <itemizedlist>
218               <listitem>
219                 <para>[Recommended.]  Enter a passphrase, which you
220                 will quote each time you use CVS.
221                 <literal>ssh-agent</literal> makes this entirely
222                 un-tiresome.</para>
223               </listitem>
224               <listitem>
225                 <para>[Deprecated.] Just hit return (i.e. use an empty
226                 passphrase); then you won't need to quote the
227                 passphrase when using CVS.  The downside is that
228                 anyone who can see into your <literal>.ssh</literal>
229                 directory, and thereby get your private key, can mess
230                 up the repository.  So you must keep the
231                 <literal>.ssh</literal> directory with draconian
232                 no-access permissions.</para>
233               </listitem>
234             </itemizedlist>
235
236
237        <para>
238        <emphasis>Windows users: see the notes in <xref linkend="configure-ssh"/> about <command>ssh</command> wrinkles!</emphasis>
239          </para>
240
241
242           </listitem>
243
244           <listitem>
245             <para>Send a message to to the CVS repository
246             administrator (currently Jeff Lewis
247             <email>jeff@galois.com</email>), containing:</para>
248             <itemizedlist>
249               <listitem>
250                 <para>Your desired user-name.</para>
251               </listitem>
252               <listitem>
253                 <para>Your <literal>.ssh/id_dsa.pub</literal> (or
254                 <literal>.ssh/identity.pub</literal>).</para>
255               </listitem>
256             </itemizedlist>
257             <para>He will set up your account.</para>
258           </listitem>
259
260           <listitem>
261             <para>Set the following environment variables:</para>
262            <itemizedlist>
263            <listitem>
264            <para>
265            <constant>$HOME</constant>: points to your home directory.  This is where CVS
266            will look for its <filename>.cvsrc</filename> file.
267            </para>
268            </listitem>
269
270            <listitem>
271            <para>
272            <constant>$CVS_RSH</constant> to <filename>ssh</filename>
273            </para>
274            <para>[Windows users.] Setting your <literal>CVS_RSH</literal> to
275             <literal>ssh</literal> assumes that your CVS client
276             understands how to execute shell script
277             (&quot;#!&quot;s,really), which is what
278             <literal>ssh</literal> is. This may not be the case on
279             Win32 platforms, so in that case set <literal>CVS_RSH</literal> to
280             <literal>ssh1</literal>.</para>
281            </listitem>
282
283              <listitem>
284                 <para><literal>$CVSROOT</literal> to
285                 <literal>:ext:</literal><replaceable>your-username</replaceable>
286                 <literal>@cvs.haskell.org:/home/cvs/root</literal>
287                 where <replaceable>your-username</replaceable> is your user name on
288                 <literal>cvs.haskell.org</literal>.
289                 </para>
290         <para>The <literal>CVSROOT</literal> environment variable will
291         be recorded in the checked-out tree, so you don't need to set
292         this every time. </para>
293
294              </listitem>
295
296         <listitem>
297         <para>
298         <constant>$CVSEDITOR</constant>: <filename>bin/gnuclient.exe</filename> 
299         if you want to use an Emacs buffer for typing in those long commit messages.
300         </para>
301         </listitem>
302
303         <listitem>
304         <para>
305         <constant>$SHELL</constant>: To use bash as the shell in Emacs, you need to
306         set this to point to <filename>bash.exe</filename>.
307         </para>
308         </listitem>
309
310        </itemizedlist>
311
312
313           </listitem>
314
315           <listitem>
316           <para>
317           Put the following in <filename>$HOME/.cvsrc</filename>:
318           </para>
319           
320 <programlisting>checkout -P
321 release -d
322 update -P
323 diff -u</programlisting>
324           
325           <para>
326           These are the default options for the specified CVS commands,
327           and represent better defaults than the usual ones.  (Feel
328           free to change them.)
329           </para>
330           
331           <para>
332           [Windows users.]  Filenames starting with <filename>.</filename> were illegal in 
333           the 8.3 DOS filesystem, but that restriction should have
334           been lifted by now (i.e., you're using VFAT or later filesystems.) If
335           you're still having problems creating it, don't worry; <filename>.cvsrc</filename> is entirely
336           optional.
337           </para>
338           </listitem>
339
340         </orderedlist>
341
342
343         <para>[Experts.]  Once your account is set up, you can get
344         access from other machines without bothering Jeff, thus:</para>
345         <orderedlist>
346           <listitem>
347             <para>Generate a public/private key pair on the new
348             machine.</para>
349           </listitem>
350           <listitem>
351             <para>Use ssh to log in to
352             <literal>cvs.haskell.org</literal>, from your old
353             machine.</para>
354           </listitem>
355           <listitem>
356             <para>Add the public key for the new machine to the file
357             <literal>$HOME/ssh/authorized_keys</literal> on
358             <literal>cvs.haskell.org</literal>.
359             (<literal>authorized_keys2</literal>, I think, for Version
360             2 protocol.)</para>
361           </listitem>
362           <listitem>
363             <para>Make sure that the new version of
364             <literal>authorized_keys</literal> still has 600 file
365             permissions.</para>
366           </listitem>
367         </orderedlist>
368       </sect3>
369     </sect2>
370
371
372
373     <sect2 id="cvs-first">
374       <title>Checking Out a Source Tree</title>
375
376       <itemizedlist>
377         <listitem>
378           <para>Make sure you set your <literal>CVSROOT</literal>
379           environment variable according to either of the remote
380           methods above. The Approved Way to check out a source tree
381           is as follows:</para>
382
383 <screen>$ cvs checkout fpconfig</screen>
384
385           <para>At this point you have a new directory called
386           <literal>fptools</literal> which contains the basic stuff
387           for the fptools suite, including the configuration files and
388           some other junk. </para>
389
390 <para>[Windows users.]  The following messages appear to be harmless:
391 <screen>setsockopt IPTOS_LOWDELAY: Invalid argument
392 setsockopt IPTOS_THROUGHPUT: Invalid argument</screen>
393 </para>
394
395
396           <para>You can call the fptools directory whatever you like,
397           CVS won't mind: </para>
398           
399 <screen>$ mv fptools <replaceable>directory</replaceable></screen>
400
401           <para> NB: after you've read the CVS manual you might be
402           tempted to try</para>
403 <screen>$ cvs checkout -d <replaceable>directory</replaceable> fpconfig</screen>
404
405           <para>instead of checking out <literal>fpconfig</literal>
406           and then renaming it.  But this doesn't work, and will
407           result in checking out the entire repository instead of just
408           the <literal>fpconfig</literal> bit.</para>
409 <screen>$ cd <replaceable>directory</replaceable>
410 $ cvs checkout ghc hslibs libraries</screen>
411
412           <para>The second command here checks out the relevant
413           modules you want to work on. For a GHC build, for instance,
414           you need at least the <literal>ghc</literal>,
415           <literal>hslibs</literal> and <literal>libraries</literal>
416           modules (for a full list of the projects available, see
417           <xref linkend="projects"/>).</para>
418
419           <para>Remember that if you do not have
420           <literal>happy</literal> and/or <literal>Alex</literal>
421           installed, you need to check them out as well.</para>
422         </listitem>
423       </itemizedlist>
424     </sect2>
425
426     <sect2 id="cvs-committing">
427       <title>Committing Changes</title>
428
429       <para>This is only if you have read-write access to the
430       repository. For anoncvs users, CVS will issue a &quot;read-only
431       repository&quot; error if you try to commit changes.</para>
432
433       <itemizedlist>
434         <listitem>
435           <para>Build the software, if necessary. Unless you're just
436           working on documentation, you'll probably want to build the
437           software in order to test any changes you make.</para>
438         </listitem>
439
440         <listitem>
441           <para>Make changes. Preferably small ones first.</para>
442         </listitem>
443
444         <listitem>
445           <para>Test them. You can see exactly what changes you've
446           made by using the <literal>cvs diff</literal> command:</para>
447 <screen>$ cvs diff</screen>
448           <para>lists all the changes (using the
449           <literal>diff</literal> command) in and below the current
450           directory. In emacs, <literal>C-c C-v =</literal> runs
451           <literal>cvs diff</literal> on the current buffer and shows
452           you the results.</para>
453         </listitem>
454
455         <listitem>
456           <para>If you changed something in the 
457           <literal>fptools/libraries</literal> subdirectories, also run
458           <literal>make html</literal> to check if the documentation can
459           be generated successfully, too.</para>
460         </listitem>
461
462         <listitem>
463           <para>Before checking in a change, you need to update your
464           source tree:</para>
465
466 <screen>$ cd fptools
467 $ cvs update</screen>
468           <para>This pulls in any changes that other people have made,
469           and merges them with yours. If there are any conflicts, CVS
470           will tell you, and you'll have to resolve them before you
471           can check your changes in. The documentation describes what
472           to do in the event of a conflict.</para>
473
474           <para>It's not always necessary to do a full cvs update
475           before checking in a change, since CVS will always tell you
476           if you try to check in a file that someone else has changed.
477           However, you should still update at regular intervals to
478           avoid making changes that don't work in conjuction with
479           changes that someone else made. Keeping an eye on what goes
480           by on the mailing list can help here.</para>
481         </listitem>
482
483         <listitem>
484           <para>When you're happy that your change isn't going to
485           break anything, check it in. For a one-file change:</para>
486
487 <screen>$ cvs commit <replaceable>filename</replaceable></screen>
488
489           <para>CVS will then pop up an editor for you to enter a
490           &quot;commit message&quot;, this is just a short description
491           of what your change does, and will be kept in the history of
492           the file.</para>
493
494           <para>If you're using emacs, simply load up the file into a
495           buffer and type <literal>C-x C-q</literal>, and emacs will
496           prompt for a commit message and then check in the file for
497           you.</para>
498
499           <para>For a multiple-file change, things are a bit
500           trickier. There are several ways to do this, but this is the
501           way I find easiest. First type the commit message into a
502           temporary file. Then either</para>
503
504 <screen>$ cvs commit -F <replaceable>commit-message</replaceable> <replaceable>file_1</replaceable> .... <replaceable>file_n</replaceable></screen>
505
506           <para>or, if nothing else has changed in this part of the
507           source tree, </para>
508
509 <screen>$ cvs commit -F <replaceable>commit-message</replaceable> <replaceable>directory</replaceable></screen>
510
511           <para>where <replaceable>directory</replaceable> is a common
512           parent directory for all your changes, and
513           <replaceable>commit-message</replaceable> is the name of the
514           file containing the commit message.</para>
515
516           <para>Shortly afterwards, you'll get some mail from the
517           relevant mailing list saying which files changed, and giving
518           the commit message. For a multiple-file change, you should
519           still get only <emphasis>one</emphasis> message.</para>
520         </listitem>
521       </itemizedlist>
522     </sect2>
523
524     <sect2 id="cvs-update">
525       <title>Updating Your Source Tree</title>
526
527       <para>It can be tempting to cvs update just part of a source
528       tree to bring in some changes that someone else has made, or
529       before committing your own changes. This is NOT RECOMMENDED!
530       Quite often changes in one part of the tree are dependent on
531       changes in another part of the tree (the
532       <literal>mk/*.mk</literal> files are a good example where
533       problems crop up quite often). Having an inconsistent tree is a
534       major cause of headaches. </para>
535
536       <para>So, to avoid a lot of hassle, follow this recipe for
537       updating your tree:</para>
538
539 <screen>$ cd fptools
540 $ cvs update -P 2&gt;&amp;1 | tee log</screen>
541
542       <para>Look at the log file, and fix any conflicts (denoted by a
543       <quote>C</quote> in the first column).  New directories may have
544       appeared in the repository; CVS doesn't check these out by
545       default, so to get new directories you have to explicitly do
546 <screen>$ cvs update -d</screen>
547       in each project subdirectory.  Don't do this at the top level,
548       because then <emphasis>all</emphasis> the projects will be
549       checked out.</para>
550
551       <para>If you're using multiple build trees, then for every build
552       tree you have pointing at this source tree, you need to update
553       the links in case any new files have appeared: </para>
554
555 <screen>$ cd <replaceable>build-tree</replaceable>
556 $ lndir <replaceable>source-tree</replaceable></screen>
557
558       <para>Some files might have been removed, so you need to remove
559       the links pointing to these non-existent files:</para>
560
561 <screen>$ find . -xtype l -exec rm '{}' \;</screen>
562
563       <para>To be <emphasis>really</emphasis> safe, you should do
564       </para>
565
566 <screen>$ gmake all</screen>
567
568       <para>from the top-level, to update the dependencies and build
569       any changed files. </para>
570     </sect2>
571
572     <sect2 id="cvs-tags">
573       <title>GHC Tag Policy</title>
574
575       <para>If you want to check out a particular version of GHC,
576       you'll need to know how we tag versions in the repository.  The
577       policy (as of 4.04) is:</para>
578
579       <itemizedlist>
580         <listitem>
581           <para>The tree is branched before every major release.  The
582           branch tag is <literal>ghc-x-xx-branch</literal>, where
583           <literal>x-xx</literal> is the version number of the release
584           with the <literal>'.'</literal> replaced by a
585           <literal>'-'</literal>.  For example, the 4.04 release lives
586           on <literal>ghc-4-04-branch</literal>.</para>
587         </listitem>
588
589         <listitem>
590           <para>The release itself is tagged with
591           <literal>ghc-x-xx</literal> (on the branch).  eg. 4.06 is
592           called <literal>ghc-4-06</literal>.</para>
593         </listitem>
594
595         <listitem>
596           <para>We didn't always follow these guidelines, so to see
597           what tags there are for previous versions, do <literal>cvs
598           log</literal> on a file that's been around for a while (like
599           <literal>fptools/ghc/README</literal>).</para>
600         </listitem>
601       </itemizedlist>
602
603       <para>So, to check out a fresh GHC 4.06 tree you would
604       do:</para>
605
606 <screen>$ cvs co -r ghc-4-06 fpconfig
607 $ cd fptools
608 $ cvs co -r ghc-4-06 ghc hslibs</screen>
609     </sect2>
610
611     <sect2 id="cvs-hints">
612       <title>General Hints</title>
613
614       <itemizedlist>
615         <listitem>
616           <para>As a general rule: commit changes in small units,
617           preferably addressing one issue or implementing a single
618           feature.  Provide a descriptive log message so that the
619           repository records exactly which changes were required to
620           implement a given feature/fix a bug. I've found this
621           <emphasis>very</emphasis> useful in the past for finding out
622           when a particular bug was introduced: you can just wind back
623           the CVS tree until the bug disappears.</para>
624         </listitem>
625
626         <listitem>
627           <para>Keep the sources at least *buildable* at any given
628           time. No doubt bugs will creep in, but it's quite easy to
629           ensure that any change made at least leaves the tree in a
630           buildable state. We do nightly builds of GHC to keep an eye
631           on what things work/don't work each day and how we're doing
632           in relation to previous verions. This idea is truely wrecked
633           if the compiler won't build in the first place!</para>
634         </listitem>
635
636         <listitem>
637           <para>To check out extra bits into an already-checked-out
638           tree, use the following procedure.  Suppose you have a
639           checked-out fptools tree containing just ghc, and you want
640           to add nofib to it:</para>
641
642 <screen>$ cd fptools
643 $ cvs checkout nofib</screen>
644
645           <para>or: </para>
646
647 <screen>$ cd fptools
648 $ cvs update -d nofib</screen>
649           
650           <para>(the -d flag tells update to create a new
651           directory). If you just want part of the nofib suite, you
652           can do </para>
653
654 <screen>$ cd fptools
655 $ cvs checkout nofib/spectral</screen>
656
657           <para>This works because <literal>nofib</literal> is a
658           module in its own right, and spectral is a subdirectory of
659           the nofib module. The path argument to checkout must always
660           start with a module name. There's no equivalent form of this
661           command using <literal>update</literal>.</para>
662         </listitem>
663       </itemizedlist>
664     </sect2>
665   </sect1>
666
667   <sect1 id="projects">
668     <title>What projects are there?</title>
669
670     <para>The <literal>fptools</literal> suite consists of several
671     <firstterm>projects</firstterm>, most of which can be downloaded,
672     built and installed individually.  Each project corresponds to a
673     subdirectory in the source tree, and if checking out from CVS then
674     each project can be checked out individually by sitting in the top
675     level of your source tree and typing <command>cvs checkout
676     <replaceable>project</replaceable></command>.</para>
677
678     <para>Here is a list of the projects currently available:</para>
679
680     <variablelist>
681       <varlistentry>
682         <term>
683           <literal>alex</literal>
684           <indexterm><primary><literal>alex</literal></primary><secondary>project</secondary></indexterm>
685         </term>
686         <listitem>
687           <para>The <ulink
688           url="http://www.haskell.org/alex/">Alex</ulink> lexical
689           analyser generator for Haskell.</para>
690         </listitem>
691       </varlistentry>
692
693       <varlistentry>
694         <term>
695           <literal>ghc</literal>
696           <indexterm><primary><literal>ghc</literal></primary>
697           <secondary>project</secondary></indexterm>
698         </term>
699         <listitem>
700           <para>The <ulink url="http://www.haskell.org/ghc/">Glasgow
701           Haskell Compiler</ulink> (minus libraries).  Absolutely
702           required for building GHC.</para>
703         </listitem>
704       </varlistentry>
705
706       <varlistentry>
707         <term>
708           <literal>glafp-utils</literal>
709           <indexterm><primary><literal>glafp-utils</literal></primary><secondary>project</secondary></indexterm>
710         </term>
711         <listitem>
712           <para>Utility programs, some of which are used by the
713           build/installation system.  Required for pretty much
714           everything.</para>
715         </listitem>
716       </varlistentry>
717
718       <varlistentry>
719         <term>
720           <literal>greencard</literal>
721           <indexterm><primary><literal>greencard</literal></primary><secondary>project</secondary></indexterm>
722         </term>
723         <listitem>
724           <para>The <ulink
725           url="http://www.haskell.org/greencard/">GreenCard</ulink>
726           system for generating Haskell foreign function
727           interfaces.</para>
728         </listitem>
729       </varlistentry>
730
731       <varlistentry>
732         <term>
733           <literal>haggis</literal>
734           <indexterm><primary><literal>haggis</literal></primary><secondary>project</secondary></indexterm>
735         </term>
736         <listitem>
737           <para>The <ulink
738           url="http://www.dcs.gla.ac.uk/fp/software/haggis/">Haggis</ulink>
739           Haskell GUI framework.</para>
740         </listitem>
741       </varlistentry>
742
743       <varlistentry>
744         <term>
745           <literal>haddock</literal>
746           <indexterm><primary><literal>haddock</literal></primary><secondary>project</secondary></indexterm>
747         </term>
748         <listitem>
749           <para>The <ulink
750           url="http://www.haskell.org/haddock/">Haddock</ulink>
751           documentation tool.</para>
752         </listitem>
753       </varlistentry>
754
755       <varlistentry>
756         <term>
757           <literal>happy</literal>
758           <indexterm><primary><literal>happy</literal></primary><secondary>project</secondary></indexterm>
759         </term>
760         <listitem>
761           <para>The <ulink
762           url="http://www.haskell.org/happy/">Happy</ulink> Parser
763           generator.</para>
764         </listitem>
765       </varlistentry>
766
767       <varlistentry>
768         <term>
769           <literal>hdirect</literal>
770           <indexterm><primary><literal>hdirect</literal></primary><secondary>project</secondary></indexterm>
771         </term>
772         <listitem>
773           <para>The <ulink
774           url="http://www.haskell.org/hdirect/">H/Direct</ulink>
775           Haskell interoperability tool.</para>
776         </listitem>
777       </varlistentry>
778
779       <varlistentry>
780         <term>
781           <literal>hood</literal>
782           <indexterm><primary><literal>hood</literal></primary><secondary>project</secondary></indexterm>
783         </term>
784         <listitem>
785           <para>The <ulink url="http://www.haskell.org/hood/">Haskell
786           Object Observation Debugger</ulink>.</para>
787         </listitem>
788       </varlistentry>
789
790       <varlistentry>
791         <term>
792           <literal>hslibs</literal>
793           <indexterm><primary><literal>hslibs</literal></primary><secondary>project</secondary></indexterm>
794         </term>
795         <listitem>
796           <para>Supplemental libraries for GHC
797           (<emphasis>required</emphasis> for building GHC).</para>
798         </listitem>
799       </varlistentry>
800
801       <varlistentry>
802         <term>
803           <literal>libraries</literal>
804           <indexterm><primary><literal></literal></primary><secondary>project</secondary></indexterm>
805         </term>
806         <listitem>
807           <para>Hierarchical Haskell library suite
808           (<emphasis>required</emphasis> for building GHC).</para>
809         </listitem>
810       </varlistentry>
811
812       <varlistentry>
813         <term>
814           <literal>mhms</literal>
815           <indexterm><primary><literal></literal></primary><secondary>project</secondary></indexterm>
816         </term>
817         <listitem>
818           <para>The Modular Haskell Metric System.</para>
819         </listitem>
820       </varlistentry>
821
822       <varlistentry>
823         <term>
824           <literal>nofib</literal>
825           <indexterm><primary><literal>nofib</literal></primary><secondary>project</secondary></indexterm>
826         </term>
827         <listitem>
828           <para>The NoFib suite: A collection of Haskell programs used
829           primarily for benchmarking.</para>
830         </listitem>
831       </varlistentry>
832
833       <varlistentry>
834         <term>
835           <literal>testsuite</literal>
836           <indexterm><primary><literal>testsuite</literal></primary><secondary>project</secondary></indexterm>
837         </term>
838         <listitem>
839           <para>A testing framework, including GHC's regression test
840           suite.</para>
841         </listitem>
842       </varlistentry>
843     </variablelist>
844
845     <para>So, to build GHC you need at least the
846     <literal>ghc</literal>, <literal>libraries</literal> and
847     <literal>hslibs</literal> projects (a GHC source distribution will
848     already include the bits you need).</para>
849   </sect1>
850
851   <sect1 id="sec-build-checks">
852     <title>Things to check before you start</title>
853
854     <para>Here's a list of things to check before you get
855     started.</para>
856
857     <orderedlist>
858
859       <listitem><para><indexterm><primary>Disk space needed</primary></indexterm>Disk
860         space needed: from about 100Mb for a basic GHC
861         build, up to probably 500Mb for a GHC build with everything
862         included (libraries built several different ways,
863         etc.).</para>
864       </listitem>
865
866       <listitem>
867         <para>Use an appropriate machine / operating system.  <xref
868         linkend="sec-port-info"/> lists the supported platforms; if
869         yours isn't amongst these then you can try porting GHC (see
870         <xref linkend="sec-porting-ghc"/>).</para>
871       </listitem>
872
873       <listitem>
874         <para>Be sure that the &ldquo;pre-supposed&rdquo; utilities are
875         installed.  <xref linkend="sec-pre-supposed"/>
876         elaborates.</para>
877       </listitem>
878
879       <listitem>
880         <para>If you have any problem when building or installing the
881         Glasgow tools, please check the &ldquo;known pitfalls&rdquo; (<xref
882         linkend="sec-build-pitfalls"/>).  Also check the FAQ for the
883         version you're building, which is part of the User's Guide and
884         available on the <ulink url="http://www.haskell.org/ghc/" >GHC web
885         site</ulink>.</para>
886
887         <indexterm><primary>bugs</primary><secondary>known</secondary></indexterm>
888
889         <para>If you feel there is still some shortcoming in our
890         procedure or instructions, please report it.</para>
891
892         <para>For GHC, please see the <ulink
893         url="http://www.haskell.org/ghc/docs/latest/set/bug-reporting.html">bug-reporting
894         section of the GHC Users' Guide</ulink>, to maximise the
895         usefulness of your report.</para>
896
897         <indexterm><primary>bugs</primary><secondary>seporting</secondary></indexterm>
898         <para>If in doubt, please send a message to
899         <email>glasgow-haskell-bugs@haskell.org</email>.
900         <indexterm><primary>bugs</primary><secondary>mailing
901         list</secondary></indexterm></para>
902       </listitem>
903     </orderedlist>
904   </sect1>
905
906   <sect1 id="sec-port-info">
907     <title>What machines the Glasgow tools run on</title>
908
909 <indexterm><primary>ports</primary><secondary>GHC</secondary></indexterm>
910 <indexterm><primary>GHC</primary><secondary>ports</secondary></indexterm>
911 <indexterm><primary>platforms</primary><secondary>supported</secondary></indexterm>
912
913     <para>The main question is whether or not the Haskell compiler
914     (GHC) runs on your platform.</para>
915
916     <para>A &ldquo;platform&rdquo; is a
917     architecture/manufacturer/operating-system combination, such as
918     <literal>sparc-sun-solaris2</literal>.  Other common ones are
919     <literal>alpha-dec-osf2</literal>,
920     <literal>hppa1.1-hp-hpux9</literal>,
921     <literal>i386-unknown-linux</literal>,
922     <literal>i386-unknown-solaris2</literal>,
923     <literal>i386-unknown-freebsd</literal>,
924     <literal>i386-unknown-cygwin32</literal>,
925     <literal>m68k-sun-sunos4</literal>,
926     <literal>mips-sgi-irix5</literal>,
927     <literal>sparc-sun-sunos4</literal>,
928     <literal>sparc-sun-solaris2</literal>,
929     <literal>powerpc-ibm-aix</literal>.</para>
930
931     <para>Some libraries may only work on a limited number of
932     platforms; for example, a sockets library is of no use unless the
933     operating system supports the underlying BSDisms.</para>
934
935     <sect2>
936       <title>What platforms the Haskell compiler (GHC) runs on</title>
937
938       <indexterm><primary>fully-supported platforms</primary></indexterm>
939       <indexterm><primary>native-code generator</primary></indexterm>
940       <indexterm><primary>registerised ports</primary></indexterm>
941       <indexterm><primary>unregisterised ports</primary></indexterm>
942
943       <para>The GHC hierarchy of Porting Goodness: (a)&nbsp;Best is a
944       native-code generator; (b)&nbsp;next best is a
945       &ldquo;registerised&rdquo; port; (c)&nbsp;the bare minimum is an
946       &ldquo;unregisterised&rdquo; port.
947       (&ldquo;Unregisterised&rdquo; is so terrible that we won't say
948       more about it).</para>
949
950       <para>We use Sparcs running Solaris 2.7 and x86 boxes running
951       FreeBSD and Linux, so those are the best supported platforms,
952       unsurprisingly.</para>
953
954       <para>Here's everything that's known about GHC ports.  We
955       identify platforms by their &ldquo;canonical&rdquo;
956       CPU/Manufacturer/OS triple.</para>
957
958       <variablelist>
959         <varlistentry>
960           <term>alpha-dec-{osf,linux,freebsd,openbsd,netbsd}:
961           <indexterm><primary>alpha-dec-osf</primary></indexterm>
962           <indexterm><primary>alpha-dec-linux</primary></indexterm>
963           <indexterm><primary>alpha-dec-freebsd</primary></indexterm>
964           <indexterm><primary>alpha-dec-openbsd</primary></indexterm>
965           <indexterm><primary>alpha-dec-netbsd</primary></indexterm>
966           </term>
967           <listitem>
968             <para>The OSF port is currently working (as of GHC version
969             5.02.1) and well supported.  The native code generator is
970             currently non-working.  Other operating systems will
971             require some minor porting.</para>
972           </listitem>
973         </varlistentry>
974
975         <varlistentry>
976           <term>sparc-sun-sunos4
977             <indexterm><primary>sparc-sun-sunos4</primary></indexterm>
978           </term>
979           <listitem>
980             <para>Probably works with minor tweaks, hasn't been tested
981             for a while.</para>
982           </listitem>
983         </varlistentry>
984
985         <varlistentry>
986           <term>sparc-sun-solaris2
987             <indexterm><primary>sparc-sun-solaris2</primary></indexterm>
988           </term>
989           <listitem>
990             <para>Fully supported (at least for Solaris 2.7 and 2.6),
991             including native-code generator.</para>
992           </listitem>
993         </varlistentry>
994
995         <varlistentry>
996           <term>sparc-unknown-openbsd
997             <indexterm><primary>sparc-unknown-openbsd</primary></indexterm>
998           </term>
999           <listitem>
1000             <para>Supported, including native-code generator. The
1001             same should also be true of NetBSD</para>
1002           </listitem>
1003         </varlistentry>
1004
1005         <varlistentry>
1006           <term>hppa1.1-hp-hpux (HP-PA boxes running HPUX 9.x)
1007             <indexterm><primary>hppa1.1-hp-hpux</primary></indexterm>
1008           </term>
1009           <listitem>
1010             <para>A registerised port is available for version 4.08,
1011             but GHC hasn't been built on that platform since (as far
1012             as we know).  No native-code generator.</para>
1013           </listitem>
1014         </varlistentry>
1015
1016         <varlistentry>
1017           <term>i386-unknown-linux (PCs running Linux, ELF binary format)
1018             <indexterm><primary>i386-*-linux</primary></indexterm>
1019           </term>
1020           <listitem>
1021             <para>GHC works registerised and has a native code
1022             generator.  You <emphasis>must</emphasis> have GCC 2.7.x
1023             or later.  NOTE about <literal>glibc</literal> versions:
1024             GHC binaries built on a system running <literal>glibc
1025             2.0</literal> won't work on a system running
1026             <literal>glibc 2.1</literal>, and vice versa.  In general,
1027             don't expect compatibility between
1028             <literal>glibc</literal> versions, even if the shared
1029             library version hasn't changed.</para>
1030           </listitem>
1031         </varlistentry>
1032
1033         <varlistentry>
1034           <term>i386-unknown-freebsd (PCs running FreeBSD 2.2 or higher)
1035             <indexterm><primary>i386-unknown-freebsd</primary></indexterm>
1036           </term>
1037           <listitem>
1038             <para>GHC works registerised.  Pre-built packages are
1039             available in the native package format, so if you just
1040             need binaries you're better off just installing the
1041             package (it might even be on your installation
1042             CD!).</para>
1043           </listitem>
1044         </varlistentry>
1045
1046         <varlistentry>
1047           <term>i386-unknown-openbsd (PCs running OpenBSD)
1048             <indexterm><primary>i386-unknown-openbsd</primary></indexterm> 
1049           </term>
1050           <listitem>
1051             <para>Supported, with native code generator.  Packages are
1052             available through the ports system in the native package
1053             format.</para>
1054           </listitem>
1055         </varlistentry>
1056
1057         <varlistentry>
1058           <term>i386-unknown-netbsd (PCs running NetBSD)
1059             <indexterm><primary>i386-unknown-netbsd</primary></indexterm>
1060           </term>
1061           <listitem>
1062             <para>Will require some minor porting effort, but should
1063             work registerised.</para>
1064           </listitem>
1065         </varlistentry>
1066
1067         <varlistentry>
1068           <term>i386-unknown-mingw32 (PCs running Windows)
1069             <indexterm><primary>i386-unknown-mingw32</primary></indexterm>
1070           </term>
1071           <listitem>
1072             <para>Fully supported under Win9x, WinNT, Win2k, and
1073             WinXP.  Includes a native code generator.  Building from
1074             source requires a recent <ulink
1075             url="http://www.cygwin.com/">Cygwin</ulink> distribution
1076             to be installed.</para>
1077           </listitem>
1078         </varlistentry>
1079
1080         <varlistentry>
1081           <term>ia64-unknown-linux
1082             <indexterm><primary>ia64-unknown-linux</primary></indexterm>
1083           </term>
1084           <listitem>
1085             <para>Supported, except there is no native code
1086             generator.</para>
1087           </listitem>
1088         </varlistentry>
1089
1090         <varlistentry>
1091           <term>x86_64-unknown-linux
1092             <indexterm><primary>x86_64-unknown-linux</primary></indexterm>
1093           </term>
1094           <listitem>
1095             <para>GHC currently works unregisterised.  A registerised
1096             port is in progress.</para>
1097           </listitem>
1098         </varlistentry>
1099
1100         <varlistentry>
1101           <term>amd64-unknown-openbsd
1102             <indexterm><primary>amd64-unknown-linux</primary></indexterm>
1103           </term>
1104           <listitem>
1105             <para>(This is the same as x86_64-unknown-openbsd). GHC
1106                 currently works unregisterised.  A registerised port is in
1107                 progress.</para>
1108           </listitem>
1109         </varlistentry>
1110
1111         <varlistentry>
1112           <term>mips-sgi-irix5
1113             <indexterm><primary>mips-sgi-irix[5-6]</primary></indexterm>
1114           </term>
1115           <listitem>
1116             <para>Port has worked in the past, but hasn't been tested
1117             for some time (and will certainly have rotted in various
1118             ways).  As usual, we don't have access to machines and
1119             there hasn't been an overwhelming demand for this port,
1120             but feel free to get in touch.</para>
1121           </listitem>
1122         </varlistentry>
1123
1124         <varlistentry>
1125           <term>mips64-sgi-irix6
1126             <indexterm><primary>mips-sgi-irix6</primary></indexterm>
1127           </term>
1128           <listitem>
1129             <para>GHC currently works unregisterised.</para>
1130           </listitem>
1131         </varlistentry>
1132
1133         <varlistentry>
1134           <term>powerpc-ibm-aix
1135             <indexterm><primary>powerpc-ibm-aix</primary></indexterm>
1136           </term>
1137           <listitem>
1138             <para>Port currently doesn't work, needs some minimal
1139             porting effort.  As usual, we don't have access to
1140             machines and there hasn't been an overwhelming demand for
1141             this port, but feel free to get in touch.</para>
1142           </listitem>
1143         </varlistentry>
1144
1145         <varlistentry>
1146           <term>powerpc-apple-darwin
1147             <indexterm><primary>powerpc-apple-darwin</primary></indexterm> 
1148           </term>
1149           <listitem>
1150             <para>Supported registerised.  Native code generator is
1151             almost working.</para>
1152           </listitem>
1153         </varlistentry>
1154
1155         <varlistentry>
1156           <term>powerpc-apple-linux
1157             <indexterm><primary>powerpc-apple-linux</primary></indexterm> 
1158           </term>
1159           <listitem>
1160             <para>Not supported (yet).</para>
1161           </listitem>
1162         </varlistentry>
1163       </variablelist>
1164
1165       <para>Various other systems have had GHC ported to them in the
1166       distant past, including various Motorola 68k boxes.  The 68k
1167       support still remains, but porting to one of these systems will
1168       certainly be a non-trivial task.</para>
1169     </sect2>
1170
1171     <sect2>
1172       <title>What machines the other tools run on</title>
1173
1174       <para>Unless you hear otherwise, the other tools work if GHC
1175       works.</para>
1176     </sect2>
1177   </sect1>
1178
1179
1180   <sect1 id="sec-pre-supposed">
1181     <title>Installing pre-supposed utilities</title>
1182
1183     <indexterm><primary>pre-supposed utilities</primary></indexterm>
1184     <indexterm><primary>utilities, pre-supposed</primary></indexterm>
1185
1186     <para>Here are the gory details about some utility programs you
1187     may need; <command>perl</command>, <command>gcc</command> and
1188     <command>happy</command> are the only important
1189     ones. (PVM<indexterm><primary>PVM</primary></indexterm> is
1190     important if you're going for Parallel Haskell.)  The
1191     <command>configure</command><indexterm><primary>configure</primary></indexterm>
1192     script will tell you if you are missing something.</para>
1193
1194     <variablelist>
1195
1196       <varlistentry>
1197         <term>GHC
1198           <indexterm><primary>pre-supposed: GHC</primary></indexterm>
1199           <indexterm><primary>GHC, pre-supposed</primary></indexterm>
1200         </term>
1201         <listitem>
1202           <para>GHC is required to build many of the tools, including
1203           GHC itself.  If you need to port GHC to your platform
1204           because there isn't a binary distribution of GHC available,
1205           then see <xref linkend="sec-porting-ghc"/>.</para>
1206
1207           <para>Which version of GHC you need will depend on the
1208           packages you intend to build.  GHC itself will normally
1209           build using one of several older versions of itself - check
1210           the announcement or release notes for details.</para>
1211         </listitem>
1212       </varlistentry>
1213
1214       <varlistentry>
1215         <term>Perl
1216           <indexterm><primary>pre-supposed: Perl</primary></indexterm>
1217           <indexterm><primary>Perl, pre-supposed</primary></indexterm>
1218         </term>
1219         <listitem>
1220           <para><emphasis>You have to have Perl to proceed!</emphasis>
1221           Perl version 5 at least is required.  GHC has been known to
1222           tickle bugs in Perl, so if you find that Perl crashes when
1223           running GHC try updating (or downgrading) your Perl
1224           installation.  Versions of Perl that we use and are known to
1225           be fairly stable are 5.005 and 5.6.1.</para>
1226
1227           <para>For Win32 platforms, you should use the binary
1228           supplied in the InstallShield (copy it to
1229           <filename>/bin</filename>).  The Cygwin-supplied Perl seems
1230           not to work.</para>
1231
1232           <para>Perl should be put somewhere so that it can be invoked
1233           by the <literal>&num;!</literal> script-invoking
1234           mechanism. The full pathname may need to be less than 32
1235           characters long on some systems.</para>
1236         </listitem>
1237       </varlistentry>
1238
1239       <varlistentry>
1240         <term>GNU C (<command>gcc</command>)
1241           <indexterm><primary>pre-supposed: GCC (GNU C compiler)</primary></indexterm>
1242           <indexterm><primary>GCC (GNU C compiler), pre-supposed</primary></indexterm>
1243         </term>
1244         <listitem>
1245           <para>We recommend using GCC version 2.95.2 on all
1246           platforms.  Failing that, version 2.7.2 is stable on most
1247           platforms.  Earlier versions of GCC can be assumed not to
1248           work, and versions in between 2.7.2 and 2.95.2 (including
1249           <command>egcs</command>) have varying degrees of stability
1250           depending on the platform.</para>
1251
1252           <para>GCC 3.2 is currently known to have problems building
1253           GHC on Sparc, but is stable on x86.</para>
1254           
1255           <para>If your GCC dies with &ldquo;internal error&rdquo; on
1256           some GHC source file, please let us know, so we can report
1257           it and get things improved.  (Exception: on x86
1258           boxes&mdash;you may need to fiddle with GHC's
1259           <option>-monly-N-regs</option> option; see the User's
1260           Guide)</para>
1261         </listitem>
1262       </varlistentry>
1263
1264       <varlistentry>
1265         <term>GNU Make
1266           <indexterm><primary>make</primary><secondary>GNU</secondary></indexterm>
1267         </term>
1268         <listitem>
1269           <para>The fptools build system makes heavy use of features
1270           specific to GNU <command>make</command>, so you must have
1271           this installed in order to build any of the fptools
1272           suite.</para>
1273         </listitem>
1274       </varlistentry>
1275
1276       <varlistentry>
1277         <term>Happy
1278           <indexterm><primary>Happy</primary></indexterm>
1279         </term>
1280         <listitem>
1281           <para>Happy is a parser generator tool for Haskell, and is
1282           used to generate GHC's parsers.  Happy is written in
1283           Haskell, and is a project in the CVS repository
1284           (<literal>fptools/happy</literal>).  It can be built from
1285           source, but bear in mind that you'll need GHC installed in
1286           order to build it.  To avoid the chicken/egg problem,
1287           install a binary distribution of either Happy or GHC to get
1288           started.  Happy distributions are available from <ulink
1289           url="http://www.haskell.org/happy/">Happy's Web
1290           Page</ulink>.</para>
1291         </listitem>
1292       </varlistentry>
1293
1294       <varlistentry>
1295         <term>Alex
1296           <indexterm><primary>Alex</primary></indexterm>
1297         </term>
1298         <listitem>
1299           <para>Alex is a lexical-analyser generator for Haskell,
1300           which GHC uses to generate its lexer.  Like Happy, Alex is
1301           written in Haskell and is a project in the CVS repository.
1302           Alex distributions are available from <ulink
1303           url="http://www.haskell.org/alex/">Alex's Web
1304           Page</ulink>.</para>
1305         </listitem>
1306       </varlistentry>
1307
1308       <varlistentry>
1309         <term>autoconf
1310           <indexterm><primary>pre-supposed: autoconf</primary></indexterm>
1311           <indexterm><primary>autoconf, pre-supposed</primary></indexterm>
1312         </term>
1313         <listitem>
1314           <para>GNU autoconf is needed if you intend to build from the
1315           CVS sources, it is <emphasis>not</emphasis> needed if you
1316           just intend to build a standard source distribution.</para>
1317
1318           <para>Version 2.52 or later of the autoconf package is required.
1319           NB. version 2.13 will no longer work, as of GHC version
1320           6.1.</para>
1321
1322           <para><command>autoreconf</command> (from the autoconf package)
1323           recursively builds <command>configure</command> scripts from
1324           the corresponding <filename>configure.ac</filename> and
1325           <filename>aclocal.m4</filename> files.  If you modify one of
1326           the latter files, you'll need <command>autoreconf</command> to
1327           rebuild the corresponding <filename>configure</filename>.</para>
1328         </listitem>
1329       </varlistentry>
1330
1331       <varlistentry>
1332         <term><command>sed</command>
1333           <indexterm><primary>pre-supposed: sed</primary></indexterm>
1334           <indexterm><primary>sed, pre-supposed</primary></indexterm>
1335         </term>
1336         <listitem>
1337           <para>You need a working <command>sed</command> if you are
1338           going to build from sources.  The build-configuration stuff
1339           needs it.  GNU sed version 2.0.4 is no good!  It has a bug
1340           in it that is tickled by the build-configuration.  2.0.5 is
1341           OK. Others are probably OK too (assuming we don't create too
1342           elaborate configure scripts.)</para>
1343         </listitem>
1344       </varlistentry>
1345     </variablelist>
1346
1347     <para>One <literal>fptools</literal> project is worth a quick note
1348     at this point, because it is useful for all the others:
1349     <literal>glafp-utils</literal> contains several utilities which
1350     aren't particularly Glasgow-ish, but Occasionally Indispensable.
1351     Like <command>lndir</command> for creating symbolic link
1352     trees.</para>
1353
1354     <sect2 id="pre-supposed-gph-tools">
1355       <title>Tools for building parallel GHC (GPH)</title>
1356
1357       <variablelist>
1358         <varlistentry>
1359           <term>PVM version 3:
1360           <indexterm><primary>pre-supposed: PVM3 (Parallel Virtual Machine)</primary></indexterm>
1361             <indexterm><primary>PVM3 (Parallel Virtual Machine), pre-supposed</primary></indexterm>
1362           </term>
1363           <listitem>
1364             <para>PVM is the Parallel Virtual Machine on which
1365             Parallel Haskell programs run.  (You only need this if you
1366             plan to run Parallel Haskell.  Concurrent Haskell, which
1367             runs concurrent threads on a uniprocessor doesn't need
1368             it.)  Underneath PVM, you can have (for example) a network
1369             of workstations (slow) or a multiprocessor box
1370             (faster).</para>
1371
1372             <para>The current version of PVM is 3.3.11; we use 3.3.7.
1373             It is readily available on the net; I think I got it from
1374             <literal>research.att.com</literal>, in
1375             <filename>netlib</filename>.</para>
1376
1377             <para>A PVM installation is slightly quirky, but easy to
1378             do.  Just follow the <filename>Readme</filename>
1379             instructions.</para>
1380           </listitem>
1381         </varlistentry>
1382
1383         <varlistentry>
1384           <term><command>bash</command>:
1385             <indexterm><primary>bash, presupposed (Parallel Haskell only)</primary></indexterm>
1386           </term>
1387           <listitem>
1388             <para>Sadly, the <command>gr2ps</command> script, used to
1389             convert &ldquo;parallelism profiles&rdquo; to PostScript,
1390             is written in Bash (GNU's Bourne Again shell).  This bug
1391             will be fixed (someday).</para>
1392           </listitem>
1393         </varlistentry>
1394       </variablelist>
1395     </sect2>
1396
1397     <sect2 id="pre-supposed-other-tools">
1398       <title>Other useful tools</title>
1399
1400       <variablelist>
1401         <varlistentry>
1402           <term>Flex
1403             <indexterm><primary>pre-supposed: flex</primary></indexterm> 
1404             <indexterm><primary>flex, pre-supposed</primary></indexterm>
1405           </term>
1406           <listitem>
1407             <para>This is a quite-a-bit-better-than-Lex lexer.  Used
1408             to build a couple of utilities in
1409             <literal>glafp-utils</literal>.  Depending on your
1410             operating system, the supplied <command>lex</command> may
1411             or may not work; you should get the GNU version.</para>
1412           </listitem>
1413         </varlistentry>
1414       </variablelist>
1415
1416       <para>More tools are required if you want to format the documentation
1417       that comes with GHC and other fptools projects.  See <xref
1418       linkend="building-docs"/>.</para>
1419     </sect2>
1420   </sect1>
1421
1422   <sect1 id="sec-building-from-source">
1423     <title>Building from source</title>
1424
1425     <indexterm><primary>Building from source</primary></indexterm>
1426     <indexterm><primary>Source, building from</primary></indexterm>
1427
1428     <para>You've been rash enough to want to build some of the Glasgow
1429     Functional Programming tools (GHC, Happy, nofib, etc.) from
1430     source.  You've slurped the source, from the CVS repository or
1431     from a source distribution, and now you're sitting looking at a
1432     huge mound of bits, wondering what to do next.</para>
1433
1434     <para>Gingerly, you type <command>make</command>.  Wrong
1435     already!</para>
1436
1437     <para>This rest of this guide is intended for duffers like me, who
1438     aren't really interested in Makefiles and systems configurations,
1439     but who need a mental model of the interlocking pieces so that
1440     they can make them work, extend them consistently when adding new
1441     software, and lay hands on them gently when they don't
1442     work.</para>
1443
1444     <sect2 id="quick-start">
1445       <title>Quick Start</title>
1446
1447       <para>If you are starting from a source distribution, and just
1448       want a completely standard build, then the following procedure should 
1449       work (unless you're on Windows, in which case go to <xref linkend="winbuild" />).</para>
1450
1451 <screen>$ autoreconf
1452 $ ./configure
1453 $ make
1454 $ make install</screen>
1455
1456       <para>For GHC, this will do a 2-stage bootstrap build of the
1457       compiler, with profiling libraries, and install the
1458       results.</para>
1459
1460       <para>If you want to do anything at all non-standard, or you
1461       want to do some development, read on...</para>
1462     </sect2>
1463
1464     <sect2 id="sec-source-tree">
1465       <title>Your source tree</title>
1466
1467       <para>The source code is held in your <emphasis>source
1468       tree</emphasis>.  The root directory of your source tree
1469       <emphasis>must</emphasis> contain the following directories and
1470       files:</para>
1471
1472       <itemizedlist>
1473         <listitem>
1474           <para><filename>Makefile</filename>: the root
1475           Makefile.</para>
1476         </listitem>
1477
1478         <listitem>
1479           <para><filename>mk/</filename>: the directory that contains
1480           the main Makefile code, shared by all the
1481           <literal>fptools</literal> software.</para>
1482         </listitem>
1483
1484         <listitem>
1485           <para><filename>configure.ac</filename>,
1486           <filename>config.sub</filename>,
1487           <filename>config.guess</filename>: these files support the
1488           configuration process.</para>
1489         </listitem>
1490
1491         <listitem>
1492           <para><filename>install-sh</filename>.</para>
1493         </listitem>
1494       </itemizedlist>
1495
1496       <para>All the other directories are individual
1497       <emphasis>projects</emphasis> of the <literal>fptools</literal>
1498       system&mdash;for example, the Glasgow Haskell Compiler
1499       (<literal>ghc</literal>), the Happy parser generator
1500       (<literal>happy</literal>), the <literal>nofib</literal>
1501       benchmark suite, and so on.  You can have zero or more of these.
1502       Needless to say, some of them are needed to build others.</para>
1503
1504       <para>The important thing to remember is that even if you want
1505       only one project (<literal>happy</literal>, say), you must have
1506       a source tree whose root directory contains
1507       <filename>Makefile</filename>, <filename>mk/</filename>,
1508       <filename>configure.ac</filename>, and the project(s) you want
1509       (<filename>happy/</filename> in this case).  You cannot get by
1510       with just the <filename>happy/</filename> directory.</para>
1511     </sect2>
1512
1513     <sect2>
1514       <title>Build trees</title>
1515       <indexterm><primary>build trees</primary></indexterm>
1516       <indexterm><primary>link trees, for building</primary></indexterm>
1517
1518       <para>If you just want to build the software once on a single
1519       platform, then your source tree can also be your build tree, and
1520       you can skip the rest of this section.</para>
1521
1522       <para>We often want to build multiple versions of our software
1523       for different architectures, or with different options
1524       (e.g. profiling).  It's very desirable to share a single copy of
1525       the source code among all these builds.</para>
1526
1527       <para>So for every source tree we have zero or more
1528       <emphasis>build trees</emphasis>.  Each build tree is initially
1529       an exact copy of the source tree, except that each file is a
1530       symbolic link to the source file, rather than being a copy of
1531       the source file.  There are &ldquo;standard&rdquo; Unix
1532       utilities that make such copies, so standard that they go by
1533       different names:
1534       <command>lndir</command><indexterm><primary>lndir</primary></indexterm>,
1535       <command>mkshadowdir</command><indexterm><primary>mkshadowdir</primary></indexterm>
1536       are two (If you don't have either, the source distribution
1537       includes sources for the X11
1538       <command>lndir</command>&mdash;check out
1539       <filename>fptools/glafp-utils/lndir</filename>). See <xref
1540       linkend="sec-storysofar"/> for a typical invocation.</para>
1541
1542       <para>The build tree does not need to be anywhere near the
1543       source tree in the file system.  Indeed, one advantage of
1544       separating the build tree from the source is that the build tree
1545       can be placed in a non-backed-up partition, saving your systems
1546       support people from backing up untold megabytes of
1547       easily-regenerated, and rapidly-changing, gubbins.  The golden
1548       rule is that (with a single exception&mdash;<xref
1549       linkend="sec-build-config"/>) <emphasis>absolutely everything in
1550       the build tree is either a symbolic link to the source tree, or
1551       else is mechanically generated</emphasis>.  It should be
1552       perfectly OK for your build tree to vanish overnight; an hour or
1553       two compiling and you're on the road again.</para>
1554
1555       <para>You need to be a bit careful, though, that any new files
1556       you create (if you do any development work) are in the source
1557       tree, not a build tree!</para>
1558
1559       <para>Remember, that the source files in the build tree are
1560       <emphasis>symbolic links</emphasis> to the files in the source
1561       tree.  (The build tree soon accumulates lots of built files like
1562       <filename>Foo.o</filename>, as well.)  You can
1563       <emphasis>delete</emphasis> a source file from the build tree
1564       without affecting the source tree (though it's an odd thing to
1565       do).  On the other hand, if you <emphasis>edit</emphasis> a
1566       source file from the build tree, you'll edit the source-tree
1567       file directly.  (You can set up Emacs so that if you edit a
1568       source file from the build tree, Emacs will silently create an
1569       edited copy of the source file in the build tree, leaving the
1570       source file unchanged; but the danger is that you think you've
1571       edited the source file whereas actually all you've done is edit
1572       the build-tree copy.  More commonly you do want to edit the
1573       source file.)</para>
1574
1575       <para>Like the source tree, the top level of your build tree
1576       must be (a linked copy of) the root directory of the
1577       <literal>fptools</literal> suite.  Inside Makefiles, the root of
1578       your build tree is called
1579       <constant>&dollar;(FPTOOLS&lowbar;TOP)</constant><indexterm><primary>FPTOOLS&lowbar;TOP</primary></indexterm>.
1580       In the rest of this document path names are relative to
1581       <constant>&dollar;(FPTOOLS&lowbar;TOP)</constant> unless
1582       otherwise stated.  For example, the file
1583       <filename>ghc/mk/target.mk</filename> is actually
1584       <filename>&dollar;(FPTOOLS&lowbar;TOP)/ghc/mk/target.mk</filename>.</para>
1585     </sect2>
1586
1587     <sect2 id="sec-build-config">
1588       <title>Getting the build you want</title>
1589
1590       <para>When you build <literal>fptools</literal> you will be
1591       compiling code on a particular <emphasis>host
1592       platform</emphasis>, to run on a particular <emphasis>target
1593       platform</emphasis> (usually the same as the host
1594       platform)<indexterm><primary>platform</primary></indexterm>.
1595       The difficulty is that there are minor differences between
1596       different platforms; minor, but enough that the code needs to be
1597       a bit different for each.  There are some big differences too:
1598       for a different architecture we need to build GHC with a
1599       different native-code generator.</para>
1600
1601       <para>There are also knobs you can turn to control how the
1602       <literal>fptools</literal> software is built.  For example, you
1603       might want to build GHC optimised (so that it runs fast) or
1604       unoptimised (so that you can compile it fast after you've
1605       modified it.  Or, you might want to compile it with debugging on
1606       (so that extra consistency-checking code gets included) or off.
1607       And so on.</para>
1608
1609       <para>All of this stuff is called the
1610       <emphasis>configuration</emphasis> of your build.  You set the
1611       configuration using a three-step process.</para>
1612
1613       <variablelist>
1614         <varlistentry>
1615           <term>Step 1: get ready for configuration.</term>
1616           <listitem>
1617             <para>NOTE: if you're starting from a source distribution,
1618             rather than CVS sources, you can skip this step.</para>
1619
1620             <para>Change directory to
1621             <constant>&dollar;(FPTOOLS&lowbar;TOP)</constant> and
1622             issue the command</para>
1623 <screen>$ autoreconf</screen>
1624             <indexterm><primary>autoreconf</primary></indexterm>
1625             <para>(with no arguments). This GNU program (recursively) converts
1626             <filename>&dollar;(FPTOOLS&lowbar;TOP)/configure.ac</filename> and
1627             <filename>&dollar;(FPTOOLS&lowbar;TOP)/aclocal.m4</filename>
1628             to a shell script called
1629             <filename>&dollar;(FPTOOLS&lowbar;TOP)/configure</filename>.
1630               If <command>autoreconf</command> bleats that it can't write the file <filename>configure</filename>,
1631               then delete the latter and try again.  Note that you must use <command>autoreconf</command>,
1632               and not the old <command>autoconf</command>!  If you erroneously use the latter, you'll get 
1633               a message like "No rule to make target 'mk/config.h.in'".
1634             </para>
1635
1636             <para>Some projects, including GHC, have their own configure script.
1637             <command>autoreconf</command> takes care of that, too, so all you have
1638              to do is calling <command>autoreconf</command> in the top-level directory
1639             <filename>&dollar;(FPTOOLS&lowbar;TOP)</filename>.</para>
1640
1641             <para>These steps are completely platform-independent; they just mean
1642             that the human-written files (<filename>configure.ac</filename> and
1643             <filename>aclocal.m4</filename>) can be short, although the resulting
1644             files (the <command>configure</command> shell scripts and the C header
1645             template <filename>mk/config.h.in</filename>) are long.</para>
1646           </listitem>
1647         </varlistentry>
1648
1649         <varlistentry>
1650           <term>Step 2: system configuration.</term>
1651           <listitem>
1652             <para>Runs the newly-created <command>configure</command>
1653             script, thus:</para>
1654
1655 <screen>$ ./configure <optional><parameter>args</parameter></optional></screen>
1656
1657             <para><command>configure</command>'s mission is to scurry
1658             round your computer working out what architecture it has,
1659             what operating system, whether it has the
1660             <function>vfork</function> system call, where
1661             <command>tar</command> is kept, whether
1662             <command>gcc</command> is available, where various obscure
1663             <literal>&num;include</literal> files are, whether it's a
1664             leap year, and what the systems manager had for lunch.  It
1665             communicates these snippets of information in two
1666             ways:</para>
1667
1668             <itemizedlist>
1669               <listitem>
1670                 
1671                 <para>It translates
1672                 <filename>mk/config.mk.in</filename><indexterm><primary>config.mk.in</primary></indexterm>
1673                 to
1674                 <filename>mk/config.mk</filename><indexterm><primary>config.mk</primary></indexterm>,
1675                 substituting for things between
1676                 &ldquo;<literal>@</literal>&rdquo; brackets.  So,
1677                 &ldquo;<literal>@HaveGcc@</literal>&rdquo; will be
1678                 replaced by &ldquo;<literal>YES</literal>&rdquo; or
1679                 &ldquo;<literal>NO</literal>&rdquo; depending on what
1680                 <command>configure</command> finds.
1681                 <filename>mk/config.mk</filename> is included by every
1682                 Makefile (directly or indirectly), so the
1683                 configuration information is thereby communicated to
1684                 all Makefiles.</para>
1685                 </listitem>
1686
1687               <listitem>
1688                 <para> It translates
1689                 <filename>mk/config.h.in</filename><indexterm><primary>config.h.in</primary></indexterm>
1690                 to
1691                 <filename>mk/config.h</filename><indexterm><primary>config.h</primary></indexterm>.
1692                 The latter is <literal>&num;include</literal>d by
1693                 various C programs, which can thereby make use of
1694                 configuration information.</para>
1695               </listitem>
1696             </itemizedlist>
1697
1698             <para><command>configure</command> takes some optional
1699             arguments.  Use <literal>./configure --help</literal> to
1700             get a list of the available arguments.  Here are some of
1701             the ones you might need:</para>
1702
1703             <variablelist>
1704               <varlistentry>
1705                 <term><literal>--with-ghc=<parameter>path</parameter></literal>
1706                   <indexterm><primary><literal>--with-ghc</literal></primary></indexterm>
1707                 </term>
1708                 <listitem>
1709                   <para>Specifies the path to an installed GHC which
1710                   you would like to use.  This compiler will be used
1711                   for compiling GHC-specific code (eg. GHC itself).
1712                   This option <emphasis>cannot</emphasis> be specified
1713                   using <filename>build.mk</filename> (see later),
1714                   because <command>configure</command> needs to
1715                   auto-detect the version of GHC you're using.  The
1716                   default is to look for a compiler named
1717                   <literal>ghc</literal> in your path.</para>
1718                 </listitem>
1719               </varlistentry>
1720               
1721               <varlistentry>
1722                 <term><literal>--with-hc=<parameter>path</parameter></literal>
1723                   <indexterm><primary><literal>--with-hc</literal></primary></indexterm>
1724                 </term>
1725                 <listitem>
1726                   <para>Specifies the path to any installed Haskell
1727                   compiler.  This compiler will be used for compiling
1728                   generic Haskell code.  The default is to use
1729                   <literal>ghc</literal>.</para>
1730                 </listitem>
1731               </varlistentry>
1732               
1733               <varlistentry>
1734                 <term><literal>--with-gcc=<parameter>path</parameter></literal>
1735                   <indexterm><primary><literal>--with-gcc</literal></primary></indexterm>
1736                 </term>
1737                 <listitem>
1738                   <para>Specifies the path to the installed GCC. This
1739                   compiler will be used to compile all C files,
1740                   <emphasis>except</emphasis> any generated by the
1741                   installed Haskell compiler, which will have its own
1742                   idea of which C compiler (if any) to use.  The
1743                   default is to use <literal>gcc</literal>.</para>
1744                 </listitem>
1745               </varlistentry>
1746             </variablelist>
1747           </listitem>
1748         </varlistentry>
1749         
1750         <varlistentry>
1751           <term>Step 3: build configuration.</term>
1752           <listitem>
1753             <para>Next, you say how this build of
1754             <literal>fptools</literal> is to differ from the standard
1755             defaults by creating a new file
1756             <filename>mk/build.mk</filename><indexterm><primary>build.mk</primary></indexterm>
1757             <emphasis>in the build tree</emphasis>.  This file is the
1758             one and only file you edit in the build tree, precisely
1759             because it says how this build differs from the source.
1760             (Just in case your build tree does die, you might want to
1761             keep a private directory of <filename>build.mk</filename>
1762             files, and use a symbolic link in each build tree to point
1763             to the appropriate one.)  So
1764             <filename>mk/build.mk</filename> never exists in the
1765             source tree&mdash;you create one in each build tree from
1766             the template.  We'll discuss what to put in it
1767             shortly.</para>
1768           </listitem>
1769         </varlistentry>
1770       </variablelist>
1771
1772       <para>And that's it for configuration. Simple, eh?</para>
1773
1774       <para>What do you put in your build-specific configuration file
1775       <filename>mk/build.mk</filename>?  <emphasis>For almost all
1776       purposes all you will do is put make variable definitions that
1777       override those in</emphasis>
1778       <filename>mk/config.mk.in</filename>.  The whole point of
1779       <filename>mk/config.mk.in</filename>&mdash;and its derived
1780       counterpart <filename>mk/config.mk</filename>&mdash;is to define
1781       the build configuration. It is heavily commented, as you will
1782       see if you look at it.  So generally, what you do is look at
1783       <filename>mk/config.mk.in</filename>, and add definitions in
1784       <filename>mk/build.mk</filename> that override any of the
1785       <filename>config.mk</filename> definitions that you want to
1786       change.  (The override occurs because the main boilerplate file,
1787       <filename>mk/boilerplate.mk</filename><indexterm><primary>boilerplate.mk</primary></indexterm>,
1788       includes <filename>build.mk</filename> after
1789       <filename>config.mk</filename>.)</para>
1790
1791      <para>For your convenience, there's a file called <filename>build.mk.sample</filename>
1792      that can serve as a starting point for your <filename>build.mk</filename>.</para>
1793
1794       <para>For example, <filename>config.mk.in</filename> contains
1795       the definition:</para>
1796
1797 <programlisting>GhcHcOpts=-O -Rghc-timing</programlisting>
1798
1799       <para>The accompanying comment explains that this is the list of
1800       flags passed to GHC when building GHC itself.  For doing
1801       development, it is wise to add <literal>-DDEBUG</literal>, to
1802       enable debugging code.  So you would add the following to
1803       <filename>build.mk</filename>:</para>
1804       
1805       <para>or, if you prefer,</para>
1806
1807 <programlisting>GhcHcOpts += -DDEBUG</programlisting>
1808
1809       <para>GNU <command>make</command> allows existing definitions to
1810       have new text appended using the &ldquo;<literal>+=</literal>&rdquo;
1811       operator, which is quite a convenient feature.)</para>
1812
1813       <para>If you want to remove the <literal>-O</literal> as well (a
1814       good idea when developing, because the turn-around cycle gets a
1815       lot quicker), you can just override
1816       <literal>GhcLibHcOpts</literal> altogether:</para>
1817
1818 <programlisting>GhcHcOpts=-DDEBUG -Rghc-timing</programlisting>
1819
1820       <para>When reading <filename>config.mk.in</filename>, remember
1821       that anything between &ldquo;@...@&rdquo; signs is going to be substituted
1822       by <command>configure</command> later.  You
1823       <emphasis>can</emphasis> override the resulting definition if
1824       you want, but you need to be a bit surer what you are doing.
1825       For example, there's a line that says:</para>
1826
1827 <programlisting>TAR = @TarCmd@</programlisting>
1828
1829       <para>This defines the Make variables <constant>TAR</constant>
1830       to the pathname for a <command>tar</command> that
1831       <command>configure</command> finds somewhere.  If you have your
1832       own pet <command>tar</command> you want to use instead, that's
1833       fine. Just add this line to <filename>mk/build.mk</filename>:</para>
1834
1835 <programlisting>TAR = mytar</programlisting>
1836
1837       <para>You do not <emphasis>have</emphasis> to have a
1838       <filename>mk/build.mk</filename> file at all; if you don't,
1839       you'll get all the default settings from
1840       <filename>mk/config.mk.in</filename>.</para>
1841
1842       <para>You can also use <filename>build.mk</filename> to override
1843       anything that <command>configure</command> got wrong.  One place
1844       where this happens often is with the definition of
1845       <constant>FPTOOLS&lowbar;TOP&lowbar;ABS</constant>: this
1846       variable is supposed to be the canonical path to the top of your
1847       source tree, but if your system uses an automounter then the
1848       correct directory is hard to find automatically.  If you find
1849       that <command>configure</command> has got it wrong, just put the
1850       correct definition in <filename>build.mk</filename>.</para>
1851
1852     </sect2>
1853
1854     <sect2 id="sec-storysofar">
1855       <title>The story so far</title>
1856
1857       <para>Let's summarise the steps you need to carry to get
1858       yourself a fully-configured build tree from scratch.</para>
1859
1860       <orderedlist>
1861         <listitem>
1862           <para> Get your source tree from somewhere (CVS repository
1863           or source distribution).  Say you call the root directory
1864           <filename>myfptools</filename> (it does not have to be
1865           called <filename>fptools</filename>).  Make sure that you
1866           have the essential files (see <xref
1867           linkend="sec-source-tree"/>).</para>
1868         </listitem>
1869
1870         <listitem>
1871
1872           <para>(Optional) Use <command>lndir</command> or
1873           <command>mkshadowdir</command> to create a build tree.</para>
1874
1875 <screen>$ cd myfptools
1876 $ mkshadowdir . /scratch/joe-bloggs/myfptools-sun4</screen>
1877
1878           <para>(N.B. <command>mkshadowdir</command>'s first argument
1879           is taken relative to its second.) You probably want to give
1880           the build tree a name that suggests its main defining
1881           characteristic (in your mind at least), in case you later
1882           add others.</para>
1883         </listitem>
1884
1885         <listitem>
1886           <para>Change directory to the build tree.  Everything is
1887           going to happen there now.</para>
1888
1889 <screen>$ cd /scratch/joe-bloggs/myfptools-sun4</screen>
1890
1891         </listitem>
1892
1893         <listitem>
1894           <para>Prepare for system configuration:</para>
1895
1896 <screen>$ autoreconf</screen>
1897
1898           <para>(You can skip this step if you are starting from a
1899           source distribution, and you already have
1900           <filename>configure</filename> and
1901           <filename>mk/config.h.in</filename>.)</para>
1902         </listitem>
1903
1904         <listitem>
1905           <para>Do system configuration:</para>
1906
1907 <screen>$ ./configure</screen>
1908
1909           <para>Don't forget to check whether you need to add any
1910           arguments to <literal>configure</literal>; for example, a
1911           common requirement is to specify which GHC to use with
1912           <option>--with-ghc=<replaceable>ghc</replaceable></option>.</para>
1913         </listitem>
1914
1915         <listitem>
1916           <para>Create the file <filename>mk/build.mk</filename>,
1917           adding definitions for your desired configuration
1918           options.</para>
1919
1920 <screen>$ emacs mk/build.mk</screen>
1921         </listitem>
1922       </orderedlist>
1923
1924       <para>You can make subsequent changes to
1925       <filename>mk/build.mk</filename> as often as you like.  You do
1926       not have to run any further configuration programs to make these
1927       changes take effect. In theory you should, however, say
1928       <command>gmake clean</command>, <command>gmake all</command>,
1929       because configuration option changes could affect
1930       anything&mdash;but in practice you are likely to know what's
1931       affected.</para>
1932     </sect2>
1933
1934     <sect2>
1935       <title>Making things</title>
1936
1937       <para>At this point you have made yourself a fully-configured
1938       build tree, so you are ready to start building real
1939       things.</para>
1940
1941       <para>The first thing you need to know is that <emphasis>you
1942       must use GNU <command>make</command>, usually called
1943       <command>gmake</command>, not standard Unix
1944       <command>make</command></emphasis>.  If you use standard Unix
1945       <command>make</command> you will get all sorts of error messages
1946       (but no damage) because the <literal>fptools</literal>
1947       <command>Makefiles</command> use GNU <command>make</command>'s
1948       facilities extensively.</para>
1949
1950       <para>To just build the whole thing, <command>cd</command> to
1951       the top of your <literal>fptools</literal> tree and type
1952       <command>gmake</command>.  This will prepare the tree and build
1953       the various projects in the correct order.</para>
1954     </sect2>
1955
1956     <sect2 id="sec-bootstrapping">
1957       <title>Bootstrapping GHC</title>
1958
1959       <para>GHC requires a 2-stage bootstrap in order to provide 
1960       full functionality, including GHCi.  By a 2-stage bootstrap, we
1961       mean that the compiler is built once using the installed GHC,
1962       and then again using the compiler built in the first stage.  You
1963       can also build a stage 3 compiler, but this normally isn't
1964       necessary except to verify that the stage 2 compiler is working
1965       properly.</para>
1966
1967       <para>Note that when doing a bootstrap, the stage 1 compiler
1968       must be built, followed by the runtime system and libraries, and
1969       then the stage 2 compiler.  The correct ordering is implemented
1970       by the top-level fptools <filename>Makefile</filename>, so if
1971       you want everything to work automatically it's best to start
1972       <command>make</command> from the top of the tree.  When building
1973       GHC, the top-level fptools <filename>Makefile</filename> is set
1974       up to do a 2-stage bootstrap by default (when you say
1975       <command>make</command>).  Some other targets it supports
1976       are:</para>
1977
1978       <variablelist>
1979         <varlistentry>
1980           <term>stage1</term>
1981           <listitem>
1982             <para>Build everything as normal, including the stage 1
1983             compiler.</para>
1984           </listitem>
1985         </varlistentry>
1986
1987         <varlistentry>
1988           <term>stage2</term>
1989           <listitem>
1990             <para>Build the stage 2 compiler only.</para>
1991           </listitem>
1992         </varlistentry>
1993
1994         <varlistentry>
1995           <term>stage3</term>
1996           <listitem>
1997             <para>Build the stage 3 compiler only.</para>
1998           </listitem>
1999         </varlistentry>
2000
2001         <varlistentry>
2002           <term>bootstrap</term> <term>bootstrap2</term>
2003           <listitem>
2004             <para>Build stage 1 followed by stage 2.</para>
2005           </listitem>
2006         </varlistentry>
2007
2008         <varlistentry>
2009           <term>bootstrap3</term>
2010           <listitem>
2011             <para>Build stages 1, 2 and 3.</para>
2012           </listitem>
2013         </varlistentry>
2014
2015         <varlistentry>
2016           <term>install</term>
2017           <listitem>
2018             <para>Install everything, including the compiler built in
2019             stage 2.  To override the stage, say <literal>make install
2020             stage=<replaceable>n</replaceable></literal> where
2021             <replaceable>n</replaceable> is the stage to install.</para>
2022           </listitem>
2023         </varlistentry>
2024       </variablelist>
2025
2026       <para>The top-level <filename>Makefile</filename> also arranges
2027       to do the appropriate <literal>make boot</literal> steps (see
2028       below) before actually building anything.</para>
2029
2030       <para>The <literal>stage1</literal>, <literal>stage2</literal>
2031       and <literal>stage3</literal> targets also work in the
2032       <literal>ghc/compiler</literal> directory, but don't forget that
2033       each stage requires its own <literal>make boot</literal> step:
2034       for example, you must do</para>
2035
2036       <screen>$ make boot stage=2</screen>
2037
2038       <para>before <literal>make stage2</literal> in
2039       <literal>ghc/compiler</literal>.</para>
2040     </sect2>
2041
2042     <sect2 id="sec-standard-targets">
2043       <title>Standard Targets</title>
2044       <indexterm><primary>targets, standard makefile</primary></indexterm>
2045       <indexterm><primary>makefile targets</primary></indexterm>
2046
2047       <para>In any directory you should be able to make the following:</para>
2048
2049       <variablelist>
2050         <varlistentry>
2051           <term><literal>boot</literal></term>
2052           <listitem>
2053             <para>does the one-off preparation required to get ready
2054             for the real work.  Notably, it does <command>gmake
2055             depend</command> in all directories that contain programs.
2056             It also builds the necessary tools for compilation to
2057             proceed.</para>
2058
2059             <para>Invoking the <literal>boot</literal> target
2060             explicitly is not normally necessary.  From the top-level
2061             <literal>fptools</literal> directory, invoking
2062             <literal>gmake</literal> causes <literal>gmake boot
2063             all</literal> to be invoked in each of the project
2064             subdirectories, in the order specified by
2065             <literal>&dollar;(AllTargets)</literal> in
2066             <literal>config.mk</literal>.</para>
2067
2068             <para>If you're working in a subdirectory somewhere and
2069             need to update the dependencies, <literal>gmake
2070             boot</literal> is a good way to do it.</para>
2071           </listitem>
2072         </varlistentry>
2073
2074         <varlistentry>
2075           <term><literal>all</literal></term>
2076           <listitem>
2077             <para>makes all the final target(s) for this Makefile.
2078             Depending on which directory you are in a &ldquo;final
2079             target&rdquo; may be an executable program, a library
2080             archive, a shell script, or a Postscript file.  Typing
2081             <command>gmake</command> alone is generally the same as
2082             typing <command>gmake all</command>.</para>
2083           </listitem>
2084         </varlistentry>
2085
2086         <varlistentry>
2087           <term><literal>install</literal></term>
2088           <listitem>
2089             <para>installs the things built by <literal>all</literal>
2090             (except for the documentation).  Where does it install
2091             them?  That is specified by
2092             <filename>mk/config.mk.in</filename>; you can override it
2093             in <filename>mk/build.mk</filename>, or by running
2094             <command>configure</command> with command-line arguments
2095             like <literal>--bindir=/home/simonpj/bin</literal>; see
2096             <literal>./configure --help</literal> for the full
2097             details.</para>
2098           </listitem>
2099         </varlistentry>
2100
2101         <varlistentry>
2102           <term><literal>install-docs</literal></term>
2103           <listitem>
2104             <para>installs the documentation. Otherwise behaves just
2105             like <literal>install</literal>.</para>
2106           </listitem>
2107         </varlistentry>
2108
2109         <varlistentry>
2110           <term><literal>uninstall</literal></term>
2111           <listitem>
2112             <para>reverses the effect of
2113             <literal>install</literal>.</para>
2114           </listitem>
2115         </varlistentry>
2116
2117         <varlistentry>
2118           <term><literal>clean</literal></term>
2119           <listitem>
2120             <para>Delete all files from the current directory that are
2121             normally created by building the program.  Don't delete
2122             the files that record the configuration, or files
2123             generated by <command>gmake boot</command>.  Also preserve
2124             files that could be made by building, but normally aren't
2125             because the distribution comes with them.</para>
2126           </listitem>
2127         </varlistentry>
2128
2129         <varlistentry>
2130           <term><literal>distclean</literal></term>
2131           <listitem>
2132             <para>Delete all files from the current directory that are
2133             created by configuring or building the program. If you
2134             have unpacked the source and built the program without
2135             creating any other files, <literal>make
2136             distclean</literal> should leave only the files that were
2137             in the distribution.</para>
2138           </listitem>
2139         </varlistentry>
2140
2141         <varlistentry>
2142           <term><literal>mostlyclean</literal></term>
2143           <listitem>
2144             <para>Like <literal>clean</literal>, but may refrain from
2145             deleting a few files that people normally don't want to
2146             recompile.</para>
2147           </listitem>
2148         </varlistentry>
2149
2150         <varlistentry>
2151           <term><literal>maintainer-clean</literal></term>
2152           <listitem>
2153             <para>Delete everything from the current directory that
2154             can be reconstructed with this Makefile.  This typically
2155             includes everything deleted by
2156             <literal>distclean</literal>, plus more: C source files
2157             produced by Bison, tags tables, Info files, and so
2158             on.</para>
2159
2160             <para>One exception, however: <literal>make
2161             maintainer-clean</literal> should not delete
2162             <filename>configure</filename> even if
2163             <filename>configure</filename> can be remade using a rule
2164             in the <filename>Makefile</filename>. More generally,
2165             <literal>make maintainer-clean</literal> should not delete
2166             anything that needs to exist in order to run
2167             <filename>configure</filename> and then begin to build the
2168             program.</para>
2169           </listitem>
2170         </varlistentry>
2171
2172         <varlistentry>
2173           <term><literal>check</literal></term>
2174           <listitem>
2175             <para>run the test suite.</para>
2176           </listitem>
2177         </varlistentry>
2178       </variablelist>
2179
2180       <para>All of these standard targets automatically recurse into
2181       sub-directories.  Certain other standard targets do not:</para>
2182
2183       <variablelist>
2184         <varlistentry>
2185           <term><literal>configure</literal></term>
2186           <listitem>
2187             <para>is only available in the root directory
2188             <constant>&dollar;(FPTOOLS&lowbar;TOP)</constant>; it has
2189             been discussed in <xref
2190             linkend="sec-build-config"/>.</para>
2191           </listitem>
2192         </varlistentry>
2193
2194         <varlistentry>
2195           <term><literal>depend</literal></term>
2196           <listitem>
2197             <para>make a <filename>.depend</filename> file in each
2198             directory that needs it. This <filename>.depend</filename>
2199             file contains mechanically-generated dependency
2200             information; for example, suppose a directory contains a
2201             Haskell source module <filename>Foo.lhs</filename> which
2202             imports another module <literal>Baz</literal>.  Then the
2203             generated <filename>.depend</filename> file will contain
2204             the dependency:</para>
2205
2206 <programlisting>Foo.o : Baz.hi</programlisting>
2207
2208             <para>which says that the object file
2209             <filename>Foo.o</filename> depends on the interface file
2210             <filename>Baz.hi</filename> generated by compiling module
2211             <literal>Baz</literal>.  The <filename>.depend</filename>
2212             file is automatically included by every Makefile.</para>
2213           </listitem>
2214         </varlistentry>
2215
2216         <varlistentry>
2217           <term><literal>binary-dist</literal></term>
2218           <listitem>
2219             <para>make a binary distribution.  This is the target we
2220             use to build the binary distributions of GHC and
2221             Happy.</para>
2222           </listitem>
2223         </varlistentry>
2224
2225         <varlistentry>
2226           <term><literal>dist</literal></term>
2227           <listitem>
2228             <para>make a source distribution.  Note that this target
2229             does &ldquo;make distclean&rdquo; as part of its work;
2230             don't use it if you want to keep what you've built.</para>
2231           </listitem>
2232         </varlistentry>
2233       </variablelist>
2234
2235       <para>Most <filename>Makefile</filename>s have targets other
2236       than these.  You can discover them by looking in the
2237       <filename>Makefile</filename> itself.</para>
2238     </sect2>
2239
2240     <sect2>
2241       <title>Using a project from the build tree</title> 
2242
2243       <para>If you want to build GHC (say) and just use it direct from
2244       the build tree without doing <literal>make install</literal>
2245       first, you can run the in-place driver script:
2246       <filename>ghc/compiler/ghc-inplace</filename>.</para>
2247
2248       <para> Do <emphasis>NOT</emphasis> use
2249       <filename>ghc/compiler/ghc</filename>, or
2250       <filename>ghc/compiler/ghc-6.xx</filename>, as these are the
2251       scripts intended for installation, and contain hard-wired paths
2252       to the installed libraries, rather than the libraries in the
2253       build tree.</para>
2254
2255       <para>Happy can similarly be run from the build tree, using
2256       <filename>happy/src/happy-inplace</filename>, and similarly for
2257       Alex and Haddock.</para>
2258     </sect2>
2259
2260     <sect2>
2261       <title>Fast Making</title>
2262
2263       <indexterm><primary>fastmake</primary></indexterm>
2264       <indexterm><primary>dependencies, omitting</primary></indexterm>
2265       <indexterm><primary>FAST, makefile variable</primary></indexterm>
2266
2267       <para>Sometimes the dependencies get in the way: if you've made
2268       a small change to one file, and you're absolutely sure that it
2269       won't affect anything else, but you know that
2270       <command>make</command> is going to rebuild everything anyway,
2271       the following hack may be useful:</para>
2272
2273 <screen>$ gmake FAST=YES</screen>
2274
2275       <para>This tells the make system to ignore dependencies and just
2276       build what you tell it to.  In other words, it's equivalent to
2277       temporarily removing the <filename>.depend</filename> file in
2278       the current directory (where <command>mkdependHS</command> and
2279       friends store their dependency information).</para>
2280
2281       <para>A bit of history: GHC used to come with a
2282       <command>fastmake</command> script that did the above job, but
2283       GNU make provides the features we need to do it without
2284       resorting to a script.  Also, we've found that fastmaking is
2285       less useful since the advent of GHC's recompilation checker (see
2286       the User's Guide section on "Separate Compilation").</para>
2287     </sect2>
2288   </sect1>
2289
2290   <sect1 id="sec-makefile-arch">
2291     <title>The <filename>Makefile</filename> architecture</title>
2292     <indexterm><primary>makefile architecture</primary></indexterm>
2293
2294     <para><command>make</command> is great if everything
2295     works&mdash;you type <command>gmake install</command> and lo! the
2296     right things get compiled and installed in the right places.  Our
2297     goal is to make this happen often, but somehow it often doesn't;
2298     instead some weird error message eventually emerges from the
2299     bowels of a directory you didn't know existed.</para>
2300
2301     <para>The purpose of this section is to give you a road-map to
2302     help you figure out what is going right and what is going
2303     wrong.</para>
2304
2305     <sect2>
2306       <title>Debugging</title>
2307       
2308       <para>Debugging <filename>Makefile</filename>s is something of a
2309       black art, but here's a couple of tricks that we find
2310       particularly useful.  The following command allows you to see
2311       the contents of any make variable in the context of the current
2312       <filename>Makefile</filename>:</para>
2313
2314 <screen>$ make show VALUE=HS_SRCS</screen>
2315
2316       <para>where you can replace <literal>HS_SRCS</literal> with the
2317       name of any variable you wish to see the value of.</para>
2318       
2319       <para>GNU make has a <option>-d</option> option which generates
2320       a dump of the decision procedure used to arrive at a conclusion
2321       about which files should be recompiled.  Sometimes useful for
2322       tracking down problems with superfluous or missing
2323       recompilations.</para>
2324     </sect2>
2325
2326     <sect2>
2327       <title>A small project</title>
2328
2329       <para>To get started, let us look at the
2330       <filename>Makefile</filename> for an imaginary small
2331       <literal>fptools</literal> project, <literal>small</literal>.
2332       Each project in <literal>fptools</literal> has its own directory
2333       in <constant>FPTOOLS&lowbar;TOP</constant>, so the
2334       <literal>small</literal> project will have its own directory
2335       <constant>FPOOLS&lowbar;TOP/small/</constant>.  Inside the
2336       <filename>small/</filename> directory there will be a
2337       <filename>Makefile</filename>, looking something like
2338       this:</para>
2339
2340 <indexterm><primary>Makefile, minimal</primary></indexterm>
2341
2342 <programlisting># Makefile for fptools project "small"
2343
2344 TOP = ..
2345 include $(TOP)/mk/boilerplate.mk
2346
2347 SRCS = $(wildcard *.lhs) $(wildcard *.c)
2348 HS_PROG = small
2349
2350 include $(TOP)/target.mk</programlisting>
2351
2352       <para>this <filename>Makefile</filename> has three
2353       sections:</para>
2354
2355       <orderedlist>
2356         <listitem>
2357           <para>The first section includes
2358 <footnote>
2359 <para>
2360 One of the most important
2361 features of GNU <command>make</command> that we use is the ability for a <filename>Makefile</filename> to
2362 include another named file, very like <command>cpp</command>'s <literal>&num;include</literal>
2363 directive.
2364 </para>
2365 </footnote>
2366
2367           a file of &ldquo;boilerplate&rdquo; code from the level
2368           above (which in this case will be
2369           <filename>FPTOOLS&lowbar;TOP/mk/boilerplate.mk</filename><indexterm><primary>boilerplate.mk</primary></indexterm>).
2370           As its name suggests, <filename>boilerplate.mk</filename>
2371           consists of a large quantity of standard
2372           <filename>Makefile</filename> code.  We discuss this
2373           boilerplate in more detail in <xref linkend="sec-boiler"/>.
2374           <indexterm><primary>include, directive in
2375           Makefiles</primary></indexterm> <indexterm><primary>Makefile
2376           inclusion</primary></indexterm></para>
2377
2378           <para>Before the <literal>include</literal> statement, you
2379           must define the <command>make</command> variable
2380           <constant>TOP</constant><indexterm><primary>TOP</primary></indexterm>
2381           to be the directory containing the <filename>mk</filename>
2382           directory in which the <filename>boilerplate.mk</filename>
2383           file is.  It is <emphasis>not</emphasis> OK to simply say</para>
2384
2385 <programlisting>include ../mk/boilerplate.mk  # NO NO NO</programlisting>
2386
2387
2388           <para>Why?  Because the <filename>boilerplate.mk</filename>
2389           file needs to know where it is, so that it can, in turn,
2390           <literal>include</literal> other files.  (Unfortunately,
2391           when an <literal>include</literal>d file does an
2392           <literal>include</literal>, the filename is treated relative
2393           to the directory in which <command>gmake</command> is being
2394           run, not the directory in which the
2395           <literal>include</literal>d sits.)  In general,
2396           <emphasis>every file <filename>foo.mk</filename> assumes
2397           that
2398           <filename>&dollar;(TOP)/mk/foo.mk</filename>
2399           refers to itself.</emphasis> It is up to the
2400           <filename>Makefile</filename> doing the
2401           <literal>include</literal> to ensure this is the case.</para>
2402
2403           <para>Files intended for inclusion in other
2404           <filename>Makefile</filename>s are written to have the
2405           following property: <emphasis>after
2406           <filename>foo.mk</filename> is <literal>include</literal>d,
2407           it leaves <constant>TOP</constant> containing the same value
2408           as it had just before the <literal>include</literal>
2409           statement</emphasis>.  In our example, this invariant
2410           guarantees that the <literal>include</literal> for
2411           <filename>target.mk</filename> will look in the same
2412           directory as that for <filename>boilerplate.mk</filename>.</para>
2413         </listitem>
2414
2415         <listitem>
2416           <para> The second section defines the following standard
2417           <command>make</command> variables:
2418           <constant>SRCS</constant><indexterm><primary>SRCS</primary></indexterm>
2419           (the source files from which is to be built), and
2420           <constant>HS&lowbar;PROG</constant><indexterm><primary>HS&lowbar;PROG</primary></indexterm>
2421           (the executable binary to be built).  We will discuss in
2422           more detail what the &ldquo;standard variables&rdquo; are,
2423           and how they affect what happens, in <xref
2424           linkend="sec-targets"/>.</para>
2425
2426           <para>The definition for <constant>SRCS</constant> uses the
2427           useful GNU <command>make</command> construct
2428           <literal>&dollar;(wildcard&nbsp;$pat$)</literal><indexterm><primary>wildcard</primary></indexterm>,
2429           which expands to a list of all the files matching the
2430           pattern <literal>pat</literal> in the current directory.  In
2431           this example, <constant>SRCS</constant> is set to the list
2432           of all the <filename>.lhs</filename> and
2433           <filename>.c</filename> files in the directory.  (Let's
2434           suppose there is one of each, <filename>Foo.lhs</filename>
2435           and <filename>Baz.c</filename>.)</para>
2436         </listitem>
2437
2438         <listitem>
2439           <para>The last section includes a second file of standard
2440           code, called
2441           <filename>target.mk</filename><indexterm><primary>target.mk</primary></indexterm>.
2442           It contains the rules that tell <command>gmake</command> how
2443           to make the standard targets (<xref
2444           linkend="sec-standard-targets"/>).  Why, you ask, can't this
2445           standard code be part of
2446           <filename>boilerplate.mk</filename>?  Good question.  We
2447           discuss the reason later, in <xref
2448           linkend="sec-boiler-arch"/>.</para>
2449
2450           <para>You do not <emphasis>have</emphasis> to
2451           <literal>include</literal> the
2452           <filename>target.mk</filename> file.  Instead, you can write
2453           rules of your own for all the standard targets.  Usually,
2454           though, you will find quite a big payoff from using the
2455           canned rules in <filename>target.mk</filename>; the price
2456           tag is that you have to understand what canned rules get
2457           enabled, and what they do (<xref
2458           linkend="sec-targets"/>).</para>
2459         </listitem>
2460       </orderedlist>
2461
2462       <para>In our example <filename>Makefile</filename>, most of the
2463       work is done by the two <literal>include</literal>d files.  When
2464       you say <command>gmake all</command>, the following things
2465       happen:</para>
2466
2467       <itemizedlist>
2468         <listitem>
2469           <para><command>gmake</command> figures out that the object
2470           files are <filename>Foo.o</filename> and
2471           <filename>Baz.o</filename>.</para>
2472         </listitem>
2473
2474         <listitem>
2475           <para>It uses a boilerplate pattern rule to compile
2476           <filename>Foo.lhs</filename> to <filename>Foo.o</filename>
2477           using a Haskell compiler.  (Which one?  That is set in the
2478           build configuration.)</para>
2479         </listitem>
2480
2481         <listitem>
2482           <para>It uses another standard pattern rule to compile
2483           <filename>Baz.c</filename> to <filename>Baz.o</filename>,
2484           using a C compiler.  (Ditto.)</para>
2485         </listitem>
2486
2487         <listitem>
2488           <para>It links the resulting <filename>.o</filename> files
2489           together to make <literal>small</literal>, using the Haskell
2490           compiler to do the link step.  (Why not use
2491           <command>ld</command>?  Because the Haskell compiler knows
2492           what standard libraries to link in.  How did
2493           <command>gmake</command> know to use the Haskell compiler to
2494           do the link, rather than the C compiler?  Because we set the
2495           variable <constant>HS&lowbar;PROG</constant> rather than
2496           <constant>C&lowbar;PROG</constant>.)</para>
2497         </listitem>
2498       </itemizedlist>
2499
2500       <para>All <filename>Makefile</filename>s should follow the above
2501       three-section format.</para>
2502     </sect2>
2503
2504     <sect2>
2505       <title>A larger project</title>
2506
2507       <para>Larger projects are usually structured into a number of
2508       sub-directories, each of which has its own
2509       <filename>Makefile</filename>.  (In very large projects, this
2510       sub-structure might be iterated recursively, though that is
2511       rare.)  To give you the idea, here's part of the directory
2512       structure for the (rather large) GHC project:</para>
2513
2514 <programlisting>$(FPTOOLS_TOP)/ghc/
2515   Makefile
2516   mk/
2517     boilerplate.mk
2518     rules.mk
2519    docs/
2520     Makefile
2521     ...source files for documentation...
2522    driver/
2523     Makefile
2524     ...source files for driver...
2525    compiler/
2526     Makefile
2527     parser/...source files for parser...
2528     renamer/...source files for renamer...
2529     ...etc...</programlisting>
2530
2531       <para>The sub-directories <filename>docs</filename>,
2532       <filename>driver</filename>, <filename>compiler</filename>, and
2533       so on, each contains a sub-component of GHC, and each has its
2534       own <filename>Makefile</filename>.  There must also be a
2535       <filename>Makefile</filename> in
2536       <filename>&dollar;(FPTOOLS&lowbar;TOP)/ghc</filename>.
2537       It does most of its work by recursively invoking
2538       <command>gmake</command> on the <filename>Makefile</filename>s
2539       in the sub-directories.  We say that
2540       <filename>ghc/Makefile</filename> is a <emphasis>non-leaf
2541       <filename>Makefile</filename></emphasis>, because it does little
2542       except organise its children, while the
2543       <filename>Makefile</filename>s in the sub-directories are all
2544       <emphasis>leaf <filename>Makefile</filename>s</emphasis>.  (In
2545       principle the sub-directories might themselves contain a
2546       non-leaf <filename>Makefile</filename> and several
2547       sub-sub-directories, but that does not happen in GHC.)</para>
2548
2549       <para>The <filename>Makefile</filename> in
2550       <filename>ghc/compiler</filename> is considered a leaf
2551       <filename>Makefile</filename> even though the
2552       <filename>ghc/compiler</filename> has sub-directories, because
2553       these sub-directories do not themselves have
2554       <filename>Makefile</filename>s in them.  They are just used to
2555       structure the collection of modules that make up GHC, but all
2556       are managed by the single <filename>Makefile</filename> in
2557       <filename>ghc/compiler</filename>.</para>
2558
2559       <para>You will notice that <filename>ghc/</filename> also
2560       contains a directory <filename>ghc/mk/</filename>.  It contains
2561       GHC-specific <filename>Makefile</filename> boilerplate code.
2562       More precisely:</para>
2563
2564       <itemizedlist>
2565         <listitem>
2566           <para><filename>ghc/mk/boilerplate.mk</filename> is included
2567           at the top of <filename>ghc/Makefile</filename>, and of all
2568           the leaf <filename>Makefile</filename>s in the
2569           sub-directories.  It in turn <literal>include</literal>s the
2570           main boilerplate file
2571           <filename>mk/boilerplate.mk</filename>.</para>
2572         </listitem>
2573
2574         <listitem>
2575           <para><filename>ghc/mk/target.mk</filename> is
2576           <literal>include</literal>d at the bottom of
2577           <filename>ghc/Makefile</filename>, and of all the leaf
2578           <filename>Makefile</filename>s in the sub-directories.  It
2579           in turn <literal>include</literal>s the file
2580           <filename>mk/target.mk</filename>.</para>
2581         </listitem>
2582       </itemizedlist>
2583
2584       <para>So these two files are the place to look for GHC-wide
2585       customisation of the standard boilerplate.</para>
2586     </sect2>
2587
2588     <sect2 id="sec-boiler-arch">
2589       <title>Boilerplate architecture</title>
2590       <indexterm><primary>boilerplate architecture</primary></indexterm>
2591
2592       <para>Every <filename>Makefile</filename> includes a
2593       <filename>boilerplate.mk</filename><indexterm><primary>boilerplate.mk</primary></indexterm>
2594       file at the top, and
2595       <filename>target.mk</filename><indexterm><primary>target.mk</primary></indexterm>
2596       file at the bottom.  In this section we discuss what is in these
2597       files, and why there have to be two of them.  In general:</para>
2598
2599       <itemizedlist>
2600         <listitem>
2601           <para><filename>boilerplate.mk</filename> consists of:</para>
2602
2603           <itemizedlist>
2604             <listitem>
2605               <para><emphasis>Definitions of millions of
2606               <command>make</command> variables</emphasis> that
2607               collectively specify the build configuration.  Examples:
2608               <constant>HC&lowbar;OPTS</constant><indexterm><primary>HC&lowbar;OPTS</primary></indexterm>,
2609               the options to feed to the Haskell compiler;
2610               <constant>NoFibSubDirs</constant><indexterm><primary>NoFibSubDirs</primary></indexterm>,
2611               the sub-directories to enable within the
2612               <literal>nofib</literal> project;
2613               <constant>GhcWithHc</constant><indexterm><primary>GhcWithHc</primary></indexterm>,
2614               the name of the Haskell compiler to use when compiling
2615               GHC in the <literal>ghc</literal> project.</para>
2616             </listitem>
2617
2618             <listitem>
2619               <para><emphasis>Standard pattern rules</emphasis> that
2620               tell <command>gmake</command> how to construct one file
2621               from another.</para>
2622             </listitem>
2623           </itemizedlist>
2624
2625           <para><filename>boilerplate.mk</filename> needs to be
2626           <literal>include</literal>d at the <emphasis>top</emphasis>
2627           of each <filename>Makefile</filename>, so that the user can
2628           replace the boilerplate definitions or pattern rules by
2629           simply giving a new definition or pattern rule in the
2630           <filename>Makefile</filename>.  <command>gmake</command>
2631           simply takes the last definition as the definitive one.</para>
2632
2633           <para>Instead of <emphasis>replacing</emphasis> boilerplate
2634           definitions, it is also quite common to
2635           <emphasis>augment</emphasis> them. For example, a
2636           <filename>Makefile</filename> might say:</para>
2637
2638 <programlisting>SRC_HC_OPTS += -O</programlisting>
2639
2640           <para>thereby adding &ldquo;<option>-O</option>&rdquo; to
2641           the end of
2642           <constant>SRC&lowbar;HC&lowbar;OPTS</constant><indexterm><primary>SRC&lowbar;HC&lowbar;OPTS</primary></indexterm>.</para>
2643         </listitem>
2644
2645         <listitem>
2646           <para><filename>target.mk</filename> contains
2647           <command>make</command> rules for the standard targets
2648           described in <xref linkend="sec-standard-targets"/>.  These
2649           rules are selectively included, depending on the setting of
2650           certain <command>make</command> variables.  These variables
2651           are usually set in the middle section of the
2652           <filename>Makefile</filename> between the two
2653           <literal>include</literal>s.</para>
2654
2655           <para><filename>target.mk</filename> must be included at the
2656           end (rather than being part of
2657           <filename>boilerplate.mk</filename>) for several tiresome
2658           reasons:</para>
2659
2660           <itemizedlist>
2661             <listitem>
2662
2663               <para><command>gmake</command> commits target and
2664               dependency lists earlier than it should.  For example,
2665               <filename>target.mk</filename> has a rule that looks
2666               like this:</para>
2667
2668 <programlisting>$(HS_PROG) : $(OBJS)
2669       $(HC) $(LD_OPTS) $&#60; -o $@</programlisting>
2670
2671               <para>If this rule was in
2672               <filename>boilerplate.mk</filename> then
2673               <constant>&dollar;(HS&lowbar;PROG)</constant><indexterm><primary>HS&lowbar;PROG</primary></indexterm>
2674               and
2675               <constant>&dollar;(OBJS)</constant><indexterm><primary>OBJS</primary></indexterm>
2676               would not have their final values at the moment
2677               <command>gmake</command> encountered the rule.  Alas,
2678               <command>gmake</command> takes a snapshot of their
2679               current values, and wires that snapshot into the rule.
2680               (In contrast, the commands executed when the rule
2681               &ldquo;fires&rdquo; are only substituted at the moment
2682               of firing.)  So, the rule must follow the definitions
2683               given in the <filename>Makefile</filename> itself.</para>
2684             </listitem>
2685
2686             <listitem>
2687               <para>Unlike pattern rules, ordinary rules cannot be
2688               overriden or replaced by subsequent rules for the same
2689               target (at least, not without an error message).
2690               Including ordinary rules in
2691               <filename>boilerplate.mk</filename> would prevent the
2692               user from writing rules for specific targets in specific
2693               cases.</para>
2694             </listitem>
2695
2696             <listitem>
2697               <para>There are a couple of other reasons I've
2698               forgotten, but it doesn't matter too much.</para>
2699             </listitem>
2700           </itemizedlist>
2701         </listitem>
2702       </itemizedlist>
2703     </sect2>
2704
2705     <sect2 id="sec-boiler">
2706       <title>The main <filename>mk/boilerplate.mk</filename> file</title>
2707       <indexterm><primary>boilerplate.mk</primary></indexterm>
2708
2709       <para>If you look at
2710       <filename>&dollar;(FPTOOLS&lowbar;TOP)/mk/boilerplate.mk</filename>
2711       you will find that it consists of the following sections, each
2712       held in a separate file:</para>
2713
2714       <variablelist>
2715         <varlistentry>
2716           <term><filename>config.mk</filename>
2717             <indexterm><primary>config.mk</primary></indexterm>
2718           </term>
2719           <listitem>
2720             <para>is the build configuration file we discussed at
2721             length in <xref linkend="sec-build-config"/>.</para>
2722           </listitem>
2723         </varlistentry>
2724
2725         <varlistentry>
2726           <term><filename>paths.mk</filename>
2727             <indexterm><primary>paths.mk</primary></indexterm>
2728           </term>
2729           <listitem>
2730             <para>defines <command>make</command> variables for
2731             pathnames and file lists.  This file contains code for
2732             automatically compiling lists of source files and deriving
2733             lists of object files from those.  The results can be
2734             overriden in the <filename>Makefile</filename>, but in
2735             most cases the automatic setup should do the right
2736             thing.</para>
2737             
2738             <para>The following variables may be set in the
2739             <filename>Makefile</filename> to affect how the automatic
2740             source file search is done:</para>
2741
2742             <variablelist>
2743               <varlistentry>
2744                 <term><literal>ALL_DIRS</literal>
2745                   <indexterm><primary><literal>ALL_DIRS</literal></primary></indexterm>
2746                 </term>
2747                 <listitem>
2748                   <para>Set to a list of directories to search in
2749                   addition to the current directory for source
2750                   files.</para>
2751                 </listitem>
2752               </varlistentry>
2753
2754               <varlistentry>
2755                 <term><literal>EXCLUDED_SRCS</literal>
2756                   <indexterm><primary><literal>EXCLUDED_SRCS</literal></primary></indexterm>
2757                 </term>
2758                 <listitem>
2759                   <para>Set to a list of source files (relative to the
2760                   current directory) to omit from the automatic
2761                   search.  The source searching machinery is clever
2762                   enough to know that if you exclude a source file
2763                   from which other sources are derived, then the
2764                   derived sources should also be excluded.  For
2765                   example, if you set <literal>EXCLUDED_SRCS</literal>
2766                   to include <filename>Foo.y</filename>, then
2767                   <filename>Foo.hs</filename> will also be
2768                   excluded.</para>
2769                 </listitem>
2770               </varlistentry>
2771
2772               <varlistentry>
2773                 <term><literal>EXTRA_SRCS</literal>
2774                   <indexterm><primary><literal>EXTRA_SRCS</literal></primary></indexterm>
2775                 </term>
2776                   <listitem>
2777                   <para>Set to a list of extra source files (perhaps
2778                   in directories not listed in
2779                   <literal>ALL_DIRS</literal>) that should be
2780                   considered.</para>
2781                 </listitem>
2782               </varlistentry>
2783             </variablelist>
2784
2785             <para>The results of the automatic source file search are
2786             placed in the following make variables:</para>
2787
2788             <variablelist>
2789               <varlistentry>
2790                 <term><literal>SRCS</literal>
2791                   <indexterm><primary><literal>SRCS</literal></primary></indexterm>
2792                 </term>
2793                 <listitem>
2794                   <para>All source files found, sorted and without
2795                   duplicates, including those which might not exist
2796                   yet but will be derived from other existing sources.
2797                   <literal>SRCS</literal> <emphasis>can</emphasis> be
2798                   overriden if necessary, in which case the variables
2799                   below will follow suit.</para>
2800                 </listitem>
2801               </varlistentry>
2802
2803               <varlistentry>
2804                 <term><literal>HS_SRCS</literal>
2805                   <indexterm><primary><literal>HS_SRCS</literal></primary></indexterm>
2806                 </term>
2807                 <listitem>
2808                   <para>all Haskell source files in the current
2809                   directory, including those derived from other source
2810                   files (eg. Happy sources also give rise to Haskell
2811                   sources).</para>
2812                 </listitem>
2813               </varlistentry>
2814
2815               <varlistentry>
2816                 <term><literal>HS_OBJS</literal>
2817                   <indexterm><primary><literal>HS_OBJS</literal></primary></indexterm>
2818                 </term>
2819                 <listitem>
2820                   <para>Object files derived from
2821                   <literal>HS_SRCS</literal>.</para>
2822                 </listitem>
2823               </varlistentry>
2824
2825               <varlistentry>
2826                 <term><literal>HS_IFACES</literal>
2827                   <indexterm><primary><literal>HS_IFACES</literal></primary></indexterm>
2828                 </term>
2829                 <listitem>
2830                   <para>Interface files (<literal>.hi</literal> files)
2831                   derived from <literal>HS_SRCS</literal>.</para>
2832                 </listitem>
2833               </varlistentry>
2834
2835               <varlistentry>
2836                 <term><literal>C_SRCS</literal>
2837                 <indexterm><primary><literal>C_SRCS</literal></primary></indexterm>
2838                 </term>
2839                 <listitem>
2840                   <para>All C source files found.</para>
2841                 </listitem>
2842               </varlistentry>
2843
2844               <varlistentry>
2845                 <term><literal>C_OBJS</literal>
2846                 <indexterm><primary><literal>C_OBJS</literal></primary></indexterm>
2847                 </term>
2848                 <listitem>
2849                   <para>Object files derived from
2850                   <literal>C_SRCS</literal>.</para>
2851                 </listitem>
2852               </varlistentry>
2853
2854               <varlistentry>
2855                 <term><literal>SCRIPT_SRCS</literal>
2856                 <indexterm><primary><literal>SCRIPT_SRCS</literal></primary></indexterm>
2857                 </term>
2858                 <listitem>
2859                   <para>All script source files found
2860                   (<literal>.lprl</literal> files).</para>
2861                 </listitem>
2862               </varlistentry>
2863
2864               <varlistentry>
2865                 <term><literal>SCRIPT_OBJS</literal>
2866                 <indexterm><primary><literal>SCRIPT_OBJS</literal></primary></indexterm>
2867                 </term>
2868                 <listitem>
2869                   <para><quote>object</quote> files derived from
2870                   <literal>SCRIPT_SRCS</literal>
2871                   (<literal>.prl</literal> files).</para>
2872                 </listitem>
2873               </varlistentry>
2874
2875               <varlistentry>
2876                 <term><literal>HSC_SRCS</literal>
2877                 <indexterm><primary><literal>HSC_SRCS</literal></primary></indexterm>
2878                 </term>
2879                 <listitem>
2880                   <para>All <literal>hsc2hs</literal> source files
2881                   (<literal>.hsc</literal> files).</para>
2882                 </listitem>
2883               </varlistentry>
2884
2885               <varlistentry>
2886                 <term><literal>HAPPY_SRCS</literal>
2887                 <indexterm><primary><literal>HAPPY_SRCS</literal></primary></indexterm>
2888                 </term>
2889                 <listitem>
2890                   <para>All <literal>happy</literal> source files
2891                   (<literal>.y</literal> or <literal>.hy</literal> files).</para>
2892                 </listitem>
2893               </varlistentry>
2894
2895               <varlistentry>
2896                 <term><literal>OBJS</literal>
2897                 <indexterm><primary>OBJS</primary></indexterm>
2898                 </term>
2899                 <listitem>
2900                   <para>the concatenation of
2901                   <literal>&dollar;(HS_OBJS)</literal>,
2902                   <literal>&dollar;(C_OBJS)</literal>, and
2903                   <literal>&dollar;(SCRIPT_OBJS)</literal>.</para>
2904                 </listitem>
2905               </varlistentry>
2906             </variablelist>
2907
2908             <para>Any or all of these definitions can easily be
2909             overriden by giving new definitions in your
2910             <filename>Makefile</filename>.</para>
2911
2912             <para>What, exactly, does <filename>paths.mk</filename>
2913             consider a <quote>source file</quote> to be?  It's based
2914             on the file's suffix (e.g. <filename>.hs</filename>,
2915             <filename>.lhs</filename>, <filename>.c</filename>,
2916             <filename>.hy</filename>, etc), but this is the kind of
2917             detail that changes, so rather than enumerate the source
2918             suffices here the best thing to do is to look in
2919             <filename>paths.mk</filename>.</para>
2920           </listitem>
2921         </varlistentry>
2922
2923         <varlistentry>
2924           <term><filename>opts.mk</filename>
2925             <indexterm><primary>opts.mk</primary></indexterm>
2926           </term>
2927           <listitem>
2928             <para>defines <command>make</command> variables for option
2929             strings to pass to each program. For example, it defines
2930             <constant>HC&lowbar;OPTS</constant><indexterm><primary>HC&lowbar;OPTS</primary></indexterm>,
2931             the option strings to pass to the Haskell compiler.  See
2932             <xref linkend="sec-suffix"/>.</para>
2933           </listitem>
2934         </varlistentry>
2935
2936         <varlistentry>
2937           <term><filename>suffix.mk</filename>
2938             <indexterm><primary>suffix.mk</primary></indexterm>
2939           </term>
2940           <listitem>
2941             <para>defines standard pattern rules&mdash;see <xref
2942             linkend="sec-suffix"/>.</para>
2943           </listitem>
2944         </varlistentry>
2945       </variablelist>
2946
2947       <para>Any of the variables and pattern rules defined by the
2948       boilerplate file can easily be overridden in any particular
2949       <filename>Makefile</filename>, because the boilerplate
2950       <literal>include</literal> comes first.  Definitions after this
2951       <literal>include</literal> directive simply override the default
2952       ones in <filename>boilerplate.mk</filename>.</para>
2953     </sect2>
2954
2955     <sect2 id="sec-suffix">
2956       <title>Pattern rules and options</title>
2957       <indexterm><primary>Pattern rules</primary></indexterm>
2958
2959       <para>The file
2960       <filename>suffix.mk</filename><indexterm><primary>suffix.mk</primary></indexterm>
2961       defines standard <emphasis>pattern rules</emphasis> that say how
2962       to build one kind of file from another, for example, how to
2963       build a <filename>.o</filename> file from a
2964       <filename>.c</filename> file.  (GNU <command>make</command>'s
2965       <emphasis>pattern rules</emphasis> are more powerful and easier
2966       to use than Unix <command>make</command>'s <emphasis>suffix
2967       rules</emphasis>.)</para>
2968
2969       <para>Almost all the rules look something like this:</para>
2970
2971 <programlisting>%.o : %.c
2972       $(RM) $@
2973       $(CC) $(CC_OPTS) -c $&#60; -o $@</programlisting>
2974
2975       <para>Here's how to understand the rule.  It says that
2976       <emphasis>something</emphasis><filename>.o</filename> (say
2977       <filename>Foo.o</filename>) can be built from
2978       <emphasis>something</emphasis><filename>.c</filename>
2979       (<filename>Foo.c</filename>), by invoking the C compiler (path
2980       name held in <constant>&dollar;(CC)</constant>), passing to it
2981       the options <constant>&dollar;(CC&lowbar;OPTS)</constant> and
2982       the rule's dependent file of the rule
2983       <literal>&dollar;&lt;</literal> (<filename>Foo.c</filename> in
2984       this case), and putting the result in the rule's target
2985       <literal>&dollar;@</literal> (<filename>Foo.o</filename> in this
2986       case).</para>
2987
2988       <para>Every program is held in a <command>make</command>
2989       variable defined in <filename>mk/config.mk</filename>&mdash;look
2990       in <filename>mk/config.mk</filename> for the complete list.  One
2991       important one is the Haskell compiler, which is called
2992       <constant>&dollar;(HC)</constant>.</para>
2993
2994       <para>Every program's options are are held in a
2995       <command>make</command> variables called
2996       <constant>&lt;prog&gt;&lowbar;OPTS</constant>.  the
2997       <constant>&lt;prog&gt;&lowbar;OPTS</constant> variables are
2998       defined in <filename>mk/opts.mk</filename>.  Almost all of them
2999       are defined like this:</para>
3000
3001 <programlisting>CC_OPTS = \
3002   $(SRC_CC_OPTS) $(WAY$(_way)_CC_OPTS) $($*_CC_OPTS) $(EXTRA_CC_OPTS)</programlisting>
3003
3004       <para>The four variables from which
3005        <constant>CC&lowbar;OPTS</constant> is built have the following
3006       meaning:</para>
3007
3008       <variablelist>
3009         <varlistentry>
3010           <term><constant>SRC&lowbar;CC&lowbar;OPTS</constant><indexterm><primary>SRC&lowbar;CC&lowbar;OPTS</primary></indexterm>:</term>
3011           <listitem>
3012             <para>options passed to all C compilations.</para>
3013           </listitem>
3014         </varlistentry>
3015
3016         <varlistentry>
3017           <term><constant>WAY&lowbar;&lt;way&gt;&lowbar;CC&lowbar;OPTS</constant>:</term>
3018           <listitem>
3019             <para>options passed to C compilations for way
3020             <literal>&lt;way&gt;</literal>. For example,
3021             <constant>WAY&lowbar;mp&lowbar;CC&lowbar;OPTS</constant>
3022             gives options to pass to the C compiler when compiling way
3023             <literal>mp</literal>.  The variable
3024             <constant>WAY&lowbar;CC&lowbar;OPTS</constant> holds
3025             options to pass to the C compiler when compiling the
3026             standard way.  (<xref linkend="sec-ways"/> dicusses
3027             multi-way compilation.)</para>
3028           </listitem>
3029         </varlistentry>
3030
3031         <varlistentry>
3032           <term><constant>&lt;module&gt;&lowbar;CC&lowbar;OPTS</constant>:</term>
3033           <listitem>
3034             <para>options to pass to the C compiler that are specific
3035             to module <literal>&lt;module&gt;</literal>.  For example,
3036             <constant>SMap&lowbar;CC&lowbar;OPTS</constant> gives the
3037             specific options to pass to the C compiler when compiling
3038             <filename>SMap.c</filename>.</para>
3039           </listitem>
3040         </varlistentry>
3041
3042         <varlistentry>
3043           <term><constant>EXTRA&lowbar;CC&lowbar;OPTS</constant><indexterm><primary>EXTRA&lowbar;CC&lowbar;OPTS</primary></indexterm>:</term>
3044           <listitem>
3045             <para>extra options to pass to all C compilations.  This
3046             is intended for command line use, thus:</para>
3047
3048 <screen>$ gmake libHS.a EXTRA_CC_OPTS="-v"</screen>
3049           </listitem>
3050         </varlistentry>
3051       </variablelist>
3052     </sect2>
3053
3054     <sect2 id="sec-targets">
3055       <title>The main <filename>mk/target.mk</filename> file</title>
3056       <indexterm><primary>target.mk</primary></indexterm>
3057
3058       <para><filename>target.mk</filename> contains canned rules for
3059       all the standard targets described in <xref
3060       linkend="sec-standard-targets"/>.  It is complicated by the fact
3061       that you don't want all of these rules to be active in every
3062       <filename>Makefile</filename>.  Rather than have a plethora of
3063       tiny files which you can include selectively, there is a single
3064       file, <filename>target.mk</filename>, which selectively includes
3065       rules based on whether you have defined certain variables in
3066       your <filename>Makefile</filename>.  This section explains what
3067       rules you get, what variables control them, and what the rules
3068       do.  Hopefully, you will also get enough of an idea of what is
3069       supposed to happen that you can read and understand any weird
3070       special cases yourself.</para>
3071
3072       <variablelist>
3073         <varlistentry>
3074           <term><constant>HS&lowbar;PROG</constant><indexterm><primary>HS&lowbar;PROG</primary></indexterm>.</term>
3075           <listitem>
3076             <para>If <constant>HS&lowbar;PROG</constant> is defined,
3077             you get rules with the following targets:</para>
3078
3079             <variablelist>
3080               <varlistentry>
3081                 <term><filename>HS&lowbar;PROG</filename><indexterm><primary>HS&lowbar;PROG</primary></indexterm></term>
3082                 <listitem>
3083                   <para>itself.  This rule links
3084                   <constant>&dollar;(OBJS)</constant> with the Haskell
3085                   runtime system to get an executable called
3086                   <constant>&dollar;(HS&lowbar;PROG)</constant>.</para>
3087                 </listitem>
3088               </varlistentry>
3089
3090               <varlistentry>
3091                 <term><literal>install</literal><indexterm><primary>install</primary></indexterm></term>
3092                 <listitem>
3093                   <para>installs
3094                   <constant>&dollar;(HS&lowbar;PROG)</constant> in
3095                   <constant>&dollar;(bindir)</constant>.</para>
3096                 </listitem>
3097               </varlistentry>
3098             </variablelist>
3099
3100           </listitem>
3101         </varlistentry>
3102
3103         <varlistentry>
3104           <term><constant>C&lowbar;PROG</constant><indexterm><primary>C&lowbar;PROG</primary></indexterm></term>
3105           <listitem>
3106             <para>is similar to <constant>HS&lowbar;PROG</constant>,
3107             except that the link step links
3108             <constant>&dollar;(C&lowbar;OBJS)</constant> with the C
3109             runtime system.</para>
3110           </listitem>
3111         </varlistentry>
3112
3113         <varlistentry>
3114           <term><constant>LIBRARY</constant><indexterm><primary>LIBRARY</primary></indexterm></term>
3115           <listitem>
3116             <para>is similar to <constant>HS&lowbar;PROG</constant>,
3117             except that it links
3118             <constant>&dollar;(LIB&lowbar;OBJS)</constant> to make the
3119             library archive <constant>&dollar;(LIBRARY)</constant>,
3120             and <literal>install</literal> installs it in
3121             <constant>&dollar;(libdir)</constant>.</para>
3122           </listitem>
3123         </varlistentry>
3124
3125         <varlistentry>
3126           <term><constant>LIB&lowbar;DATA</constant><indexterm><primary>LIB&lowbar;DATA</primary></indexterm></term>
3127           <listitem>
3128             <para>&hellip;</para>
3129           </listitem>
3130         </varlistentry>
3131
3132         <varlistentry>
3133           <term><constant>LIB&lowbar;EXEC</constant><indexterm><primary>LIB&lowbar;EXEC</primary></indexterm></term>
3134           <listitem>
3135             <para>&hellip;</para>
3136           </listitem>
3137         </varlistentry>
3138
3139         <varlistentry>
3140           <term><constant>HS&lowbar;SRCS</constant><indexterm><primary>HS&lowbar;SRCS</primary></indexterm>, <constant>C&lowbar;SRCS</constant><indexterm><primary>C&lowbar;SRCS</primary></indexterm>.</term>
3141           <listitem>
3142             <para>If <constant>HS&lowbar;SRCS</constant> is defined
3143             and non-empty, a rule for the target
3144             <literal>depend</literal> is included, which generates
3145             dependency information for Haskell programs.  Similarly
3146             for <constant>C&lowbar;SRCS</constant>.</para>
3147           </listitem>
3148         </varlistentry>
3149       </variablelist>
3150
3151       <para>All of these rules are &ldquo;double-colon&rdquo; rules,
3152       thus</para>
3153
3154 <programlisting>install :: $(HS_PROG)
3155       ...how to install it...</programlisting>
3156
3157       <para>GNU <command>make</command> treats double-colon rules as
3158       separate entities.  If there are several double-colon rules for
3159       the same target it takes each in turn and fires it if its
3160       dependencies say to do so.  This means that you can, for
3161       example, define both <constant>HS&lowbar;PROG</constant> and
3162       <constant>LIBRARY</constant>, which will generate two rules for
3163       <literal>install</literal>.  When you type <command>gmake
3164       install</command> both rules will be fired, and both the program
3165       and the library will be installed, just as you wanted.</para>
3166     </sect2>
3167
3168     <sect2 id="sec-subdirs">
3169       <title>Recursion</title>
3170       <indexterm><primary>recursion, in makefiles</primary></indexterm>
3171       <indexterm><primary>Makefile, recursing into subdirectories</primary></indexterm>
3172
3173       <para>In leaf <filename>Makefile</filename>s the variable
3174       <constant>SUBDIRS</constant><indexterm><primary>SUBDIRS</primary></indexterm>
3175       is undefined.  In non-leaf <filename>Makefile</filename>s,
3176       <constant>SUBDIRS</constant> is set to the list of
3177       sub-directories that contain subordinate
3178       <filename>Makefile</filename>s.  <emphasis>It is up to you to
3179       set <constant>SUBDIRS</constant> in the
3180       <filename>Makefile</filename>.</emphasis> There is no automation
3181       here&mdash;<constant>SUBDIRS</constant> is too important to
3182       automate.</para>
3183
3184       <para>When <constant>SUBDIRS</constant> is defined,
3185       <filename>target.mk</filename> includes a rather neat rule for
3186       the standard targets (<xref linkend="sec-standard-targets"/> that
3187       simply invokes <command>make</command> recursively in each of
3188       the sub-directories.</para>
3189
3190       <para><emphasis>These recursive invocations are guaranteed to
3191       occur in the order in which the list of directories is specified
3192       in <constant>SUBDIRS</constant>. </emphasis>This guarantee can
3193       be important.  For example, when you say <command>gmake
3194       boot</command> it can be important that the recursive invocation
3195       of <command>make boot</command> is done in one sub-directory
3196       (the include files, say) before another (the source files).
3197       Generally, put the most independent sub-directory first, and the
3198       most dependent last.</para>
3199     </sect2>
3200
3201     <sect2 id="sec-ways">
3202       <title>Way management</title>
3203       <indexterm><primary>way management</primary></indexterm>
3204
3205       <para>We sometimes want to build essentially the same system in
3206       several different &ldquo;ways&rdquo;.  For example, we want to build GHC's
3207       <literal>Prelude</literal> libraries with and without profiling,
3208       so that there is an appropriately-built library archive to link
3209       with when the user compiles his program.  It would be possible
3210       to have a completely separate build tree for each such &ldquo;way&rdquo;,
3211       but it would be horribly bureaucratic, especially since often
3212       only parts of the build tree need to be constructed in multiple
3213       ways.</para>
3214
3215       <para>Instead, the
3216       <filename>target.mk</filename><indexterm><primary>target.mk</primary></indexterm>
3217       contains some clever magic to allow you to build several
3218       versions of a system; and to control locally how many versions
3219       are built and how they differ.  This section explains the
3220       magic.</para>
3221
3222       <para>The files for a particular way are distinguished by
3223       munging the suffix.  The <quote>normal way</quote> is always
3224       built, and its files have the standard suffices
3225       <filename>.o</filename>, <filename>.hi</filename>, and so on.
3226       In addition, you can build one or more extra ways, each
3227       distinguished by a <emphasis>way tag</emphasis>.  The object
3228       files and interface files for one of these extra ways are
3229       distinguished by their suffix.  For example, way
3230       <literal>mp</literal> has files
3231       <filename>.mp&lowbar;o</filename> and
3232       <filename>.mp&lowbar;hi</filename>.  Library archives have their
3233       way tag the other side of the dot, for boring reasons; thus,
3234       <filename>libHS&lowbar;mp.a</filename>.</para>
3235
3236       <para>A <command>make</command> variable called
3237       <constant>way</constant> holds the current way tag.
3238       <emphasis><constant>way</constant> is only ever set on the
3239       command line of <command>gmake</command></emphasis> (usually in
3240       a recursive invocation of <command>gmake</command> by the
3241       system).  It is never set inside a
3242       <filename>Makefile</filename>.  So it is a global constant for
3243       any one invocation of <command>gmake</command>.  Two other
3244       <command>make</command> variables,
3245       <constant>way&lowbar;</constant> and
3246       <constant>&lowbar;way</constant> are immediately derived from
3247       <constant>&dollar;(way)</constant> and never altered.  If
3248       <constant>way</constant> is not set, then neither are
3249       <constant>way&lowbar;</constant> and
3250       <constant>&lowbar;way</constant>, and the invocation of
3251       <command>make</command> will build the <quote>normal
3252       way</quote>.  If <constant>way</constant> is set, then the other
3253       two variables are set in sympathy.  For example, if
3254       <constant>&dollar;(way)</constant> is &ldquo;<literal>mp</literal>&rdquo;,
3255       then <constant>way&lowbar;</constant> is set to
3256       &ldquo;<literal>mp&lowbar;</literal>&rdquo; and
3257       <constant>&lowbar;way</constant> is set to
3258       &ldquo;<literal>&lowbar;mp</literal>&rdquo;.  These three variables are
3259       then used when constructing file names.</para>
3260
3261       <para>So how does <command>make</command> ever get recursively
3262       invoked with <constant>way</constant> set?  There are two ways
3263       in which this happens:</para>
3264
3265       <itemizedlist>
3266         <listitem>
3267           <para>For some (but not all) of the standard targets, when
3268           in a leaf sub-directory, <command>make</command> is
3269           recursively invoked for each way tag in
3270           <constant>&dollar;(WAYS)</constant>.  You set
3271           <constant>WAYS</constant> in the
3272           <filename>Makefile</filename> to the list of way tags you
3273           want these targets built for.  The mechanism here is very
3274           much like the recursive invocation of
3275           <command>make</command> in sub-directories (<xref
3276           linkend="sec-subdirs"/>).  It is up to you to set
3277           <constant>WAYS</constant> in your
3278           <filename>Makefile</filename>; this is how you control what
3279           ways will get built.</para>
3280         </listitem>
3281
3282         <listitem>
3283           <para>For a useful collection of targets (such as
3284           <filename>libHS&lowbar;mp.a</filename>,
3285           <filename>Foo.mp&lowbar;o</filename>) there is a rule which
3286           recursively invokes <command>make</command> to make the
3287           specified target, setting the <constant>way</constant>
3288           variable.  So if you say <command>gmake
3289           Foo.mp&lowbar;o</command> you should see a recursive
3290           invocation <command>gmake Foo.mp&lowbar;o way=mp</command>,
3291           and <emphasis>in this recursive invocation the pattern rule
3292           for compiling a Haskell file into a <filename>.o</filename>
3293           file will match</emphasis>.  The key pattern rules (in
3294           <filename>suffix.mk</filename>) look like this:
3295
3296 <programlisting>%.$(way_)o : %.lhs
3297       $(HC) $(HC_OPTS) $&#60; -o $@</programlisting>
3298
3299           Neat, eh?</para>
3300         </listitem>
3301
3302         <listitem>
3303           <para>You can invoke <command>make</command> with a
3304           particular <literal>way</literal> setting yourself, in order
3305           to build files related to a particular
3306           <literal>way</literal> in the current directory.  eg.
3307
3308 <screen>$ make way=p</screen>
3309
3310           will build files for the profiling way only in the current
3311           directory. </para>
3312         </listitem>
3313       </itemizedlist>
3314     </sect2>
3315
3316     <sect2>
3317       <title>When the canned rule isn't right</title>
3318
3319       <para>Sometimes the canned rule just doesn't do the right thing.
3320       For example, in the <literal>nofib</literal> suite we want the
3321       link step to print out timing information.  The thing to do here
3322       is <emphasis>not</emphasis> to define
3323       <constant>HS&lowbar;PROG</constant> or
3324       <constant>C&lowbar;PROG</constant>, and instead define a special
3325       purpose rule in your own <filename>Makefile</filename>.  By
3326       using different variable names you will avoid the canned rules
3327       being included, and conflicting with yours.</para>
3328     </sect2>
3329   </sect1>
3330
3331   <sect1 id="building-docs">
3332     <title>Building the documentation</title>
3333
3334     <sect2 id="pre-supposed-doc-tools">
3335       <title>Tools for building the Documentation</title>
3336
3337       <para>The following additional tools are required if you want to
3338       format the documentation that comes with the
3339       <literal>fptools</literal> projects:</para>
3340       
3341       <variablelist>
3342         <varlistentry>
3343           <term>DocBook
3344             <indexterm><primary>pre-supposed: DocBook</primary></indexterm>
3345             <indexterm><primary>DocBook, pre-supposed</primary></indexterm>
3346           </term>
3347           <listitem>
3348             <para>Much of our documentation is written in DocBook XML, instructions
3349             on installing and configuring the DocBook tools are below.</para>
3350           </listitem>
3351         </varlistentry>
3352
3353         <varlistentry>
3354           <term>TeX
3355             <indexterm><primary>pre-supposed: TeX</primary></indexterm>
3356             <indexterm><primary>TeX, pre-supposed</primary></indexterm>
3357           </term>
3358           <listitem>
3359             <para>A decent TeX distribution is required if you want to
3360             produce printable documentation.  We recomment teTeX,
3361             which includes just about everything you need.</para>
3362           </listitem>
3363         </varlistentry>
3364
3365         <varlistentry>
3366           <term>Haddock
3367             <indexterm><primary>Haddock</primary></indexterm>
3368           </term>
3369           <listitem>
3370             <para>Haddock is a Haskell documentation tool that we use
3371             for automatically generating documentation from the
3372             library source code.  It is an <literal>fptools</literal>
3373             project in itself.  To build documentation for the
3374             libraries (<literal>fptools/libraries</literal>) you
3375             should check out and build Haddock in
3376             <literal>fptools/haddock</literal>.  Haddock requires GHC
3377             to build.</para>
3378           </listitem>
3379         </varlistentry>
3380       </variablelist>
3381     </sect2>
3382
3383     <sect2>
3384       <title>Installing the DocBook tools</title>
3385
3386       <sect3>
3387         <title>Installing the DocBook tools on Linux</title>
3388
3389         <para>If you're on a recent RedHat (7.0+) or SuSE (8.1+) system,
3390         you probably have working DocBook tools already installed. The
3391         configure script should detect your setup and you're away.</para>
3392
3393         <para>If you don't have DocBook tools installed, and you are
3394         using a system that can handle RPM packages, you can use <ulink
3395         url="http://rpmfind.net/">Rpmfind.net</ulink> to find suitable
3396         packages for your system. Search for the packages
3397         <literal>docbook-dtd</literal>,
3398         <literal>docbook-xsl-stylesheets</literal>,
3399         <literal>libxslt</literal>,
3400         <literal>libxml2</literal>,
3401         <literal>fop</literal>,
3402         <literal>xmltex</literal>, and
3403         <literal>dvips</literal>.</para>
3404       </sect3>
3405     
3406       <sect3>
3407         <title>Installing DocBook on FreeBSD</title>
3408
3409         <para>On FreeBSD systems, the easiest way to get DocBook up
3410         and running is to install it from the ports tree or a
3411         pre-compiled package (packages are available from your local
3412         FreeBSD mirror site).</para>
3413
3414         <para>To use the ports tree, do this:
3415 <screen>$ cd /usr/ports/textproc/docproj
3416 $ make install</screen>
3417         This installs the FreeBSD documentation project tools, which
3418         includes everything needed to format the GHC
3419         documentation.</para>
3420       </sect3>
3421
3422       <sect3>
3423         <title>Installing from binaries on Windows</title>
3424         
3425         <para>Probably the fastest route to a working DocBook environment on
3426         Windows is to install <ulink url="http://www.cygwin.com/">Cygwin</ulink>
3427         with the complete <literal>Doc</literal> category. If you are using
3428         <ulink url="http://www.mingw.org/">MinGW</ulink> for compilation, you
3429         have to help <command>configure</command> a little bit: Set the
3430         environment variables <envar>XmllintCmd</envar> and
3431         <envar>XsltprocCmd</envar> to the paths of the Cygwin executables
3432         <command>xmllint</command> and <command>xsltproc</command>,
3433         respectively, and set <envar>fp_cv_dir_docbook_xsl</envar> to the path
3434         of the directory where the XSL stylesheets are installed,
3435         e.g. <filename>c:/cygwin/usr/share/docbook-xsl</filename>.
3436         </para>
3437
3438         <para>If you want to build HTML Help, you have to install the
3439         <ulink url="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/htmlhelp/html/hworiHTMLHelpStartPage.asp">HTML Help SDK</ulink>,
3440         too, and make sure that <command>hhc</command> is in your <envar>PATH</envar>.</para>
3441       </sect3>
3442
3443     </sect2>
3444
3445     <sect2>
3446       <title>Configuring the DocBook tools</title>
3447
3448       <para>Once the DocBook tools are installed, the configure script
3449       will detect them and set up the build system accordingly. If you
3450       have a system that isn't supported, let us know, and we'll try
3451       to help.</para>
3452     </sect2>
3453
3454     <sect2>
3455       <title>Building the documentation</title>
3456
3457       <para>To build documentation in a certain format, you can
3458       say, for example,</para>
3459
3460 <screen>$ make html</screen>
3461
3462       <para>to build HTML documentation below the current directory.
3463       The available formats are: <literal>dvi</literal>,
3464       <literal>ps</literal>, <literal>pdf</literal>,
3465       <literal>html</literal>, and <literal>rtf</literal>.  Note that
3466       not all documentation can be built in all of these formats: HTML
3467       documentation is generally supported everywhere, and DocBook
3468       documentation might support the other formats (depending on what
3469       other tools you have installed).</para>
3470
3471       <para>All of these targets are recursive; that is, saying
3472       <literal>make html</literal> will make HTML docs for all the
3473       documents recursively below the current directory.</para>
3474
3475       <para>Because there are many different formats that the DocBook
3476       documentation can be generated in, you have to select which ones
3477       you want by setting the <literal>XMLDocWays</literal> variable
3478       to a list of them.  For example, in
3479       <filename>build.mk</filename> you might have a line:</para>
3480
3481 <screen>XMLDocWays = html ps</screen>
3482
3483       <para>This will cause the documentation to be built in the requested
3484       formats as part of the main build (the default is not to build
3485       any documentation at all).</para>
3486     </sect2>
3487
3488     <sect2>
3489       <title>Installing the documentation</title>
3490
3491       <para>To install the documentation, use:</para>
3492
3493 <screen>$ make install-docs</screen>
3494
3495       <para>This will install the documentation into
3496       <literal>$(datadir)</literal> (which defaults to
3497       <literal>$(prefix)/share</literal>).  The exception is HTML
3498       documentation, which goes into
3499       <literal>$(datadir)/html</literal>, to keep things tidy.</para>
3500
3501       <para>Note that unless you set <literal>$(XMLDocWays)</literal>
3502       to a list of formats, the <literal>install-docs</literal> target
3503       won't do anything for DocBook XML documentation.</para>
3504     </sect2>
3505
3506   </sect1>
3507     
3508
3509   <sect1 id="sec-porting-ghc">
3510     <title>Porting GHC</title>
3511
3512     <para>This section describes how to port GHC to a currenly
3513     unsupported platform.  There are two distinct
3514     possibilities:</para>
3515
3516     <itemizedlist>
3517       <listitem>
3518         <para>The hardware architecture for your system is already
3519         supported by GHC, but you're running an OS that isn't
3520         supported (or perhaps has been supported in the past, but
3521         currently isn't).  This is the easiest type of porting job,
3522         but it still requires some careful bootstrapping.  Proceed to
3523         <xref linkend="sec-booting-from-hc"/>.</para>
3524       </listitem>
3525       
3526       <listitem>
3527         <para>Your system's hardware architecture isn't supported by
3528         GHC.  This will be a more difficult port (though by comparison
3529         perhaps not as difficult as porting gcc).  Proceed to <xref
3530         linkend="unregisterised-porting"/>.</para>
3531       </listitem>
3532     </itemizedlist>
3533     
3534     <sect2 id="sec-booting-from-hc">
3535       <title>Booting/porting from C (<filename>.hc</filename>) files</title>
3536
3537       <indexterm><primary>building GHC from .hc files</primary></indexterm>
3538       <indexterm><primary>booting GHC from .hc files</primary></indexterm>
3539       <indexterm><primary>porting GHC</primary></indexterm>
3540
3541       <para>Bootstrapping GHC on a system without GHC already
3542       installed is achieved by taking the intermediate C files (known
3543       as HC files) from another GHC compilation, compiling them using gcc to
3544         get a working GHC.</para>
3545
3546       <para><emphasis>NOTE: GHC versions 5.xx were hard to bootstrap
3547       from C.  We recommend using GHC 6.0.1 or
3548       later.</emphasis></para>
3549
3550       <para>HC files are platform-dependent, so you have to get a set
3551         that were generated on <emphasis>the same platform</emphasis>.  There
3552         may be some supplied on the GHC download page, otherwise you'll have to
3553         compile some up yourself, or start from
3554         <emphasis>unregisterised</emphasis> HC files - see <xref
3555           linkend="unregisterised-porting"/>.</para>
3556
3557       <para>The following steps should result in a working GHC build
3558       with full libraries:</para>
3559
3560       <itemizedlist>
3561         <listitem>
3562           <para>Unpack the HC files on top of a fresh source tree
3563           (make sure the source tree version matches the version of
3564           the HC files <emphasis>exactly</emphasis>!).  This will
3565           place matching <filename>.hc</filename> files next to the
3566           corresponding Haskell source (<filename>.hs</filename> or
3567           <filename>.lhs</filename>) in the compiler subdirectory
3568           <filename>ghc/compiler</filename> and in the libraries
3569           (subdirectories of <filename>hslibs</filename> and
3570           <literal>libraries</literal>).</para>
3571         </listitem>
3572
3573         <listitem>
3574           <para>The actual build process is fully automated by the
3575           <filename>hc-build</filename> script located in the
3576           <filename>distrib</filename> directory.  If you eventually
3577           want to install GHC into the directory
3578           <replaceable>dir</replaceable>, the following
3579           command will execute the whole build process (it won't
3580           install yet):</para>
3581
3582 <screen>$ distrib/hc-build --prefix=<replaceable>dir</replaceable></screen>
3583 <indexterm><primary>--hc-build</primary></indexterm>
3584
3585           <para>By default, the installation directory is
3586           <filename>/usr/local</filename>.  If that is what you want,
3587           you may omit the argument to <filename>hc-build</filename>.
3588           Generally, any option given to <filename>hc-build</filename>
3589           is passed through to the configuration script
3590           <filename>configure</filename>.  If
3591           <filename>hc-build</filename> successfully completes the
3592           build process, you can install the resulting system, as
3593           normal, with</para>
3594
3595 <screen>$ make install</screen>
3596         </listitem>
3597       </itemizedlist>
3598     </sect2>
3599
3600     <sect2 id="unregisterised-porting">
3601       <title>Porting GHC to a new architecture</title>
3602       
3603       <para>The first step in porting to a new architecture is to get
3604       an <firstterm>unregisterised</firstterm> build working.  An
3605       unregisterised build is one that compiles via vanilla C only.
3606       By contrast, a registerised build uses the following
3607       architecture-specific hacks for speed:</para>
3608
3609       <itemizedlist>
3610         <listitem>
3611           <para>Global register variables: certain abstract machine
3612           <quote>registers</quote> are mapped to real machine
3613           registers, depending on how many machine registers are
3614           available (see
3615           <filename>ghc/includes/MachRegs.h</filename>).</para>
3616         </listitem>
3617
3618         <listitem>
3619           <para>Assembly-mangling: when compiling via C, we feed the
3620           assembly generated by gcc though a Perl script known as the
3621           <firstterm>mangler</firstterm> (see
3622           <filename>ghc/driver/mangler/ghc-asm.lprl</filename>).  The
3623           mangler rearranges the assembly to support tail-calls and
3624           various other optimisations.</para>
3625         </listitem>
3626       </itemizedlist>
3627
3628       <para>In an unregisterised build, neither of these hacks are
3629       used &mdash; the idea is that the C code generated by the
3630       compiler should compile using gcc only.  The lack of these
3631       optimisations costs about a factor of two in performance, but
3632       since unregisterised compilation is usually just a step on the
3633       way to a full registerised port, we don't mind too much.</para>
3634
3635       <para>Notes on GHC portability in general: we've tried to stick
3636       to writing portable code in most parts of the system, so it
3637       should compile on any POSIXish system with gcc, but in our
3638       experience most systems differ from the standards in one way or
3639       another.  Deal with any problems as they arise - if you get
3640       stuck, ask the experts on
3641       <email>glasgow-haskell-users@haskell.org</email>.</para>
3642         
3643       <para>Lots of useful information about the innards of GHC is
3644       available in the <ulink
3645       url="http://www.cse.unsw.edu.au/~chak/haskell/ghc/comm/">GHC
3646       Commentary</ulink>, which might be helpful if you run into some
3647       code which needs tweaking for your system.</para>
3648
3649       <sect3>
3650         <title>Cross-compiling to produce an unregisterised GHC</title>
3651
3652         <para>NOTE!  These instructions apply to GHC 6.4 and (hopefully)
3653           later.  If you need instructions for an earlier version of GHC, try
3654           to get hold of the version of this document that was current at the
3655           time.  It should be available from the appropriate download page on
3656           the <ulink
3657             url="http://www.haskell.org/ghc/">GHC&nbsp;homepage</ulink>.</para>  
3658
3659         <para>In this section, we explain how to bootstrap GHC on a
3660         new platform, using unregisterised intermediate C files.  We
3661         haven't put a great deal of effort into automating this
3662         process, for two reasons: it is done very rarely, and the
3663         process usually requires human intervention to cope with minor
3664         porting issues anyway.</para>
3665
3666         <para>The following step-by-step instructions should result in
3667         a fully working, albeit unregisterised, GHC.  Firstly, you
3668         need a machine that already has a working GHC (we'll call this
3669         the <firstterm>host</firstterm> machine), in order to
3670         cross-compile the intermediate C files that we will use to
3671         bootstrap the compiler on the <firstterm>target</firstterm>
3672         machine.</para>
3673
3674         <itemizedlist>
3675           <listitem>
3676             <para>On the target machine:</para>
3677
3678           <itemizedlist>
3679             <listitem>
3680               <para>Unpack a source tree (preferably a released
3681               version).  We will call the path to the root of this
3682               tree <replaceable>T</replaceable>.</para>
3683             </listitem>
3684
3685             <listitem>
3686 <screen>$ cd <replaceable>T</replaceable>
3687 $ ./configure --enable-hc-boot --enable-hc-boot-unregisterised</screen>
3688
3689               <para>You might need to update
3690               <filename>configure.in</filename> to recognise the new
3691               architecture, and re-generate
3692               <filename>configure</filename> with
3693               <literal>autoreconf</literal>.</para>
3694             </listitem>
3695   
3696             <listitem>
3697 <screen>$ cd <replaceable>T</replaceable>/ghc/includes
3698 $ make ghcconfig.h</screen>
3699             </listitem>
3700           </itemizedlist>
3701           </listitem>
3702
3703           <listitem>
3704             <para>On the host machine:</para>
3705               
3706           <itemizedlist>
3707             <listitem>
3708               <para>Unpack a source tree (same released version).  Call
3709               this directory <replaceable>H</replaceable>.</para>
3710             </listitem>
3711  
3712             <listitem>
3713 <screen>$ cd <replaceable>H</replaceable>
3714 $ ./configure</screen>
3715             </listitem>
3716
3717             <listitem>
3718               <para>Create
3719               <filename><replaceable>H</replaceable>/mk/build.mk</filename>,
3720               with the following contents:</para>
3721
3722 <programlisting>GhcUnregisterised = YES
3723 GhcLibHcOpts = -O -fvia-C -keep-hc-files
3724 GhcRtsHcOpts = -keep-hc-files
3725 GhcLibWays =
3726 SplitObjs = NO
3727 GhcWithNativeCodeGen = NO
3728 GhcWithInterpreter = NO
3729 GhcStage1HcOpts = -O -fasm
3730 GhcStage2HcOpts = -O -fvia-C -keep-hc-files
3731 SRC_HC_OPTS += -H32m
3732 GhcBootLibs = YES</programlisting>
3733             </listitem>
3734
3735             <listitem>
3736               <para>Edit
3737               <filename><replaceable>H</replaceable>/mk/config.mk</filename>:</para>
3738               <itemizedlist>
3739                 <listitem>
3740                   <para>change <literal>TARGETPLATFORM</literal>
3741                   appropriately, and set the variables involving
3742                   <literal>TARGET</literal> to the correct values for
3743                   the target platform.  This step is necessary because
3744                   currently <literal>configure</literal> doesn't cope
3745                   with specifying different values for the
3746                   <literal>--host</literal> and
3747                   <literal>--target</literal> flags.</para>
3748                 </listitem>
3749                 <listitem>
3750                   <para>copy <literal>LeadingUnderscore</literal>
3751                   setting from target.</para>
3752                 </listitem>
3753               </itemizedlist>
3754             </listitem>
3755
3756             <listitem>
3757               <para>Copy
3758               <filename><replaceable>T</replaceable>/ghc/includes/ghcconfig.h</filename>
3759               to
3760               <filename><replaceable>H</replaceable>/ghc/includes</filename>.
3761               Note that we are building on the host machine, using the
3762               target machine's <literal>config.h</literal> file.  This
3763               is so that the intermediate C files generated here will
3764               be suitable for compiling on the target system.</para>
3765
3766             </listitem>
3767
3768               <listitem>
3769                 <para>Touch <literal>ghcconfig.h</literal>, just to make
3770                 sure it doesn't get replaced during the build:</para>
3771 <screen>$ touch <replaceable>H</replaceable>/ghc/includes/ghcconfig.h</screen>
3772               </listitem>
3773
3774             <listitem>
3775                 <para>Now build the compiler:</para>
3776 <screen>$ cd <replaceable>H</replaceable>/glafp-utils &amp;&amp; make boot &amp;&amp; make
3777 $ cd <replaceable>H</replaceable>/ghc &amp;&amp; make boot &amp;&amp; make</screen>
3778               <para>Don't worry if the build falls over in the RTS, we
3779               don't need the RTS yet.</para>
3780             </listitem>
3781
3782             <listitem>
3783 <screen>$ cd <replaceable>H</replaceable>/libraries
3784 $ make boot &amp;&amp; make</screen>
3785             </listitem>
3786
3787             <listitem>
3788 <screen>$ cd <replaceable>H</replaceable>/ghc/compiler
3789 $ make boot stage=2 &amp;&amp; make stage=2</screen>
3790             </listitem>
3791
3792             <listitem>
3793 <screen>$ cd <replaceable>H</replaceable>/ghc/lib
3794 $ make clean
3795 $ make -k UseStage1=YES EXTRA_HC_OPTS='-O -fvia-C -keep-hc-files'
3796 $ cd <replaceable>H</replaceable>/ghc/utils
3797 $ make clean
3798 $ make -k UseStage1=YES EXTRA_HC_OPTS='-O -fvia-C -keep-hc-files'</screen>
3799             </listitem>
3800             
3801             <listitem>
3802 <screen>$ cd <replaceable>H</replaceable>
3803 $ make hc-file-bundle Project=Ghc</screen>
3804             </listitem>
3805
3806             <listitem>
3807               <para>copy
3808               <filename><replaceable>H</replaceable>/*-hc.tar.gz</filename>
3809               to <filename><replaceable>T</replaceable>/..</filename>.</para>
3810             </listitem>
3811           </itemizedlist>
3812           </listitem>
3813
3814           <listitem>
3815             <para>On the target machine:</para>
3816
3817             <para>At this stage we simply need to bootstrap a compiler
3818             from the intermediate C files we generated above.  The
3819             process of bootstrapping from C files is automated by the
3820             script in <literal>distrib/hc-build</literal>, and is
3821             described in <xref linkend="sec-booting-from-hc"/>.</para>
3822
3823 <screen>$ ./distrib/hc-build --enable-hc-boot-unregisterised</screen>
3824
3825             <para>However, since this is a bootstrap on a new machine,
3826             the automated process might not run to completion the
3827             first time.  For that reason, you might want to treat the
3828             <literal>hc-build</literal> script as a list of
3829             instructions to follow, rather than as a fully automated
3830             script.  This way you'll be able to restart the process
3831             part-way through if you need to fix anything on the
3832             way.</para>
3833
3834             <para>Don't bother with running
3835             <literal>make&nbsp;install</literal> in the newly
3836             bootstrapped tree; just use the compiler in that tree to
3837             build a fresh compiler from scratch, this time without
3838             booting from C files.  Before doing this, you might want
3839             to check that the bootstrapped compiler is generating
3840             working binaries:</para>
3841
3842 <screen>$ cat >hello.hs
3843 main = putStrLn "Hello World!\n"
3844 ^D
3845 $ <replaceable>T</replaceable>/ghc/compiler/ghc-inplace hello.hs -o hello
3846 $ ./hello
3847 Hello World!</screen>
3848
3849             <para>Once you have the unregisterised compiler up and
3850             running, you can use it to start a registerised port.  The
3851             following sections describe the various parts of the
3852             system that will need architecture-specific tweaks in
3853             order to get a registerised build going.</para>
3854
3855           </listitem>
3856         </itemizedlist>
3857       </sect3>
3858
3859       <sect3>
3860         <title>Porting the RTS</title>
3861         
3862         <para>The following files need architecture-specific code for a
3863         registerised build:</para>
3864
3865         <variablelist>
3866           <varlistentry>
3867             <term><filename>ghc/includes/MachRegs.h</filename>
3868             <indexterm><primary><filename>MachRegs.h</filename></primary></indexterm>
3869             </term>
3870             <listitem>
3871               <para>Defines the STG-register to machine-register
3872               mapping.  You need to know your platform's C calling
3873               convention, and which registers are generally available
3874               for mapping to global register variables.  There are
3875               plenty of useful comments in this file.</para>
3876             </listitem>
3877           </varlistentry>
3878           <varlistentry>
3879             <term><filename>ghc/includes/TailCalls.h</filename>
3880             <indexterm><primary><filename>TailCalls.h</filename></primary></indexterm>
3881             </term>
3882             <listitem>
3883               <para>Macros that cooperate with the mangler (see <xref
3884               linkend="sec-mangler"/>) to make proper tail-calls
3885               work.</para>
3886             </listitem>
3887           </varlistentry>
3888           <varlistentry>
3889             <term><filename>ghc/rts/Adjustor.c</filename>
3890             <indexterm><primary><filename>Adjustor.c</filename></primary></indexterm>
3891             </term>
3892             <listitem>
3893               <para>Support for
3894               <literal>foreign&nbsp;import&nbsp;"wrapper"</literal>
3895               (aka
3896               <literal>foreign&nbsp;export&nbsp;dynamic</literal>).
3897               Not essential for getting GHC bootstrapped, so this file
3898               can be deferred until later if necessary.</para>
3899             </listitem>
3900           </varlistentry>
3901           <varlistentry>
3902             <term><filename>ghc/rts/StgCRun.c</filename>
3903             <indexterm><primary><filename>StgCRun.c</filename></primary></indexterm>
3904             </term>
3905             <listitem>
3906               <para>The little assembly layer between the C world and
3907               the Haskell world.  See the comments and code for the
3908               other architectures in this file for pointers.</para>
3909             </listitem>
3910           </varlistentry>
3911           <varlistentry>
3912             <term><filename>ghc/rts/MBlock.h</filename>
3913               <indexterm><primary><filename>MBlock.h</filename></primary></indexterm>
3914             </term>
3915             <term><filename>ghc/rts/MBlock.c</filename>
3916               <indexterm><primary><filename>MBlock.c</filename></primary></indexterm>
3917             </term>
3918             <listitem>
3919               <para>These files are really OS-specific rather than
3920               architecture-specific.  In <filename>MBlock.h</filename>
3921               is specified the absolute location at which the RTS
3922               should try to allocate memory on your platform (try to
3923               find an area which doesn't conflict with code or dynamic
3924               libraries).  In <filename>Mblock.c</filename> you might
3925               need to tweak the call to <literal>mmap()</literal> for
3926               your OS.</para>
3927             </listitem>
3928           </varlistentry>
3929         </variablelist>
3930       </sect3>
3931
3932       <sect3 id="sec-mangler">
3933         <title>The mangler</title>
3934         
3935         <para>The mangler is an evil Perl-script
3936         (<filename>ghc/driver/mangler/ghc-asm.lprl</filename>) that
3937         rearranges the assembly code output from gcc to do two main
3938         things:</para>
3939
3940         <itemizedlist>
3941           <listitem>
3942             <para>Remove function prologues and epilogues, and all
3943             movement of the C stack pointer.  This is to support
3944             tail-calls: every code block in Haskell code ends in an
3945             explicit jump, so we don't want the C-stack overflowing
3946             while we're jumping around between code blocks.</para>
3947           </listitem>
3948           <listitem>
3949             <para>Move the <firstterm>info table</firstterm> for a
3950             closure next to the entry code for that closure.  In
3951             unregisterised code, info tables contain a pointer to the
3952             entry code, but in registerised compilation we arrange
3953             that the info table is shoved right up against the entry
3954             code, and addressed backwards from the entry code pointer
3955             (this saves a word in the info table and an extra
3956             indirection when jumping to the closure entry
3957             code).</para>
3958           </listitem>
3959         </itemizedlist>
3960
3961         <para>The mangler is abstracted to a certain extent over some
3962         architecture-specific things such as the particular assembler
3963         directives used to herald symbols.  Take a look at the
3964         definitions for other architectures and use these as a
3965         starting point.</para>
3966       </sect3>
3967
3968       <sect3>
3969         <title>The splitter</title>
3970
3971         <para>The splitter is another evil Perl script
3972         (<filename>ghc/driver/split/ghc-split.lprl</filename>).  It
3973         cooperates with the mangler to support object splitting.
3974         Object splitting is what happens when the
3975         <option>-split-objs</option> option is passed to GHC: the
3976         object file is split into many smaller objects.  This feature
3977         is used when building libraries, so that a program statically
3978         linked against the library will pull in less of the
3979         library.</para>
3980
3981         <para>The splitter has some platform-specific stuff; take a
3982         look and tweak it for your system.</para>
3983       </sect3>
3984
3985       <sect3>
3986         <title>The native code generator</title>
3987
3988         <para>The native code generator isn't essential to getting a
3989         registerised build going, but it's a desirable thing to have
3990         because it can cut compilation times in half.  The native code
3991         generator is described in some detail in the <ulink
3992         url="http://www.cse.unsw.edu.au/~chak/haskell/ghc/comm/">GHC
3993         commentary</ulink>.</para>
3994       </sect3>
3995
3996       <sect3>
3997         <title>GHCi</title>
3998
3999         <para>To support GHCi, you need to port the dynamic linker
4000         (<filename>fptools/ghc/rts/Linker.c</filename>).  The linker
4001         currently supports the ELF and PEi386 object file formats - if
4002         your platform uses one of these then things will be
4003         significantly easier.  The majority of Unix platforms use the
4004         ELF format these days.  Even so, there are some
4005         machine-specific parts of the ELF linker: for example, the
4006         code for resolving particular relocation types is
4007         machine-specific, so some porting of this code to your
4008         architecture will probaly be necessary.</para>
4009         
4010         <para>If your system uses a different object file format, then
4011         you have to write a linker &mdash; good luck!</para>
4012       </sect3>
4013     </sect2>
4014
4015   </sect1>
4016
4017 <sect1 id="sec-build-pitfalls">
4018 <title>Known pitfalls in building Glasgow Haskell
4019
4020 <indexterm><primary>problems, building</primary></indexterm>
4021 <indexterm><primary>pitfalls, in building</primary></indexterm>
4022 <indexterm><primary>building pitfalls</primary></indexterm></title>
4023
4024 <para>
4025 WARNINGS about pitfalls and known &ldquo;problems&rdquo;:
4026 </para>
4027
4028 <para>
4029
4030 <orderedlist>
4031 <listitem>
4032
4033 <para>
4034 One difficulty that comes up from time to time is running out of space
4035 in <literal>TMPDIR</literal>.  (It is impossible for the configuration stuff to
4036 compensate for the vagaries of different sysadmin approaches to temp
4037 space.)
4038 <indexterm><primary>tmp, running out of space in</primary></indexterm>
4039
4040 The quickest way around it is <command>setenv TMPDIR /usr/tmp</command><indexterm><primary>TMPDIR</primary></indexterm> or
4041 even <command>setenv TMPDIR .</command> (or the equivalent incantation with your shell
4042 of choice).
4043
4044 The best way around it is to say
4045
4046 <programlisting>export TMPDIR=&#60;dir&#62;</programlisting>
4047
4048 in your <filename>build.mk</filename> file.
4049 Then GHC and the other <literal>fptools</literal> programs will use the appropriate directory
4050 in all cases.
4051
4052
4053 </para>
4054 </listitem>
4055 <listitem>
4056
4057 <para>
4058 In compiling some support-code bits, e.g., in <filename>ghc/rts/gmp</filename> and even
4059 in <filename>ghc/lib</filename>, you may get a few C-compiler warnings.  We think these
4060 are OK.
4061
4062 </para>
4063 </listitem>
4064 <listitem>
4065
4066 <para>
4067 When compiling via C, you'll sometimes get &ldquo;warning: assignment from
4068 incompatible pointer type&rdquo; out of GCC.  Harmless.
4069
4070 </para>
4071 </listitem>
4072 <listitem>
4073
4074 <para>
4075 Similarly, <command>ar</command>chiving warning messages like the following are not
4076 a problem:
4077
4078 <screen>ar: filename GlaIOMonad__1_2s.o truncated to GlaIOMonad_
4079 ar: filename GlaIOMonad__2_2s.o truncated to GlaIOMonad_
4080 ...</screen>
4081
4082
4083 </para>
4084 </listitem>
4085 <listitem>
4086
4087 <para>
4088  In compiling the compiler proper (in <filename>compiler/</filename>), you <emphasis>may</emphasis>
4089 get an &ldquo;Out of heap space&rdquo; error message.  These can vary with the
4090 vagaries of different systems, it seems.  The solution is simple:
4091
4092
4093 <itemizedlist>
4094 <listitem>
4095
4096 <para>
4097  If you're compiling with GHC 4.00 or later, then the
4098 <emphasis>maximum</emphasis> heap size must have been reached.  This
4099 is somewhat unlikely, since the maximum is set to 64M by default.
4100 Anyway, you can raise it with the
4101 <option>-optCrts-M&lt;size&gt;</option> flag (add this flag to
4102 <constant>&lt;module&gt;&lowbar;HC&lowbar;OPTS</constant>
4103 <command>make</command> variable in the appropriate
4104 <filename>Makefile</filename>).
4105
4106 </para>
4107 </listitem>
4108 <listitem>
4109
4110 <para>
4111  For GHC &#60; 4.00, add a suitable <option>-H</option> flag to the <filename>Makefile</filename>, as
4112 above.
4113
4114 </para>
4115 </listitem>
4116
4117 </itemizedlist>
4118
4119
4120 and try again: <command>gmake</command>.  (see <xref linkend="sec-suffix"/> for information about
4121 <constant>&lt;module&gt;&lowbar;HC&lowbar;OPTS</constant>.)
4122
4123 Alternatively, just cut to the chase:
4124
4125 <screen>$ cd ghc/compiler
4126 $ make EXTRA_HC_OPTS=-optCrts-M128M</screen>
4127
4128
4129 </para>
4130 </listitem>
4131 <listitem>
4132
4133 <para>
4134 If you try to compile some Haskell, and you get errors from GCC about
4135 lots of things from <filename>/usr/include/math.h</filename>, then your GCC was
4136 mis-installed.  <command>fixincludes</command> wasn't run when it should've been.
4137
4138 As <command>fixincludes</command> is now automagically run as part of GCC installation,
4139 this bug also suggests that you have an old GCC.
4140
4141
4142 </para>
4143 </listitem>
4144 <listitem>
4145
4146 <para>
4147 You <emphasis>may</emphasis> need to re-<command>ranlib</command><indexterm><primary>ranlib</primary></indexterm> your libraries (on Sun4s).
4148
4149
4150 <screen>$ cd $(libdir)/ghc-x.xx/sparc-sun-sunos4
4151 $ foreach i ( `find . -name '*.a' -print` ) # or other-shell equiv...
4152 ?    ranlib $i
4153 ?    # or, on some machines: ar s $i
4154 ? end</screen>
4155
4156
4157 We'd be interested to know if this is still necessary.
4158
4159
4160 </para>
4161 </listitem>
4162 <listitem>
4163
4164 <para>
4165 GHC's sources go through <command>cpp</command> before being compiled, and <command>cpp</command> varies
4166 a bit from one Unix to another.  One particular gotcha is macro calls
4167 like this:
4168
4169
4170 <programlisting>SLIT("Hello, world")</programlisting>
4171
4172
4173 Some <command>cpp</command>s treat the comma inside the string as separating two macro
4174 arguments, so you get
4175
4176
4177 <screen>:731: macro `SLIT' used with too many (2) args</screen>
4178
4179
4180 Alas, <command>cpp</command> doesn't tell you the offending file!
4181
4182 Workaround: don't put weird things in string args to <command>cpp</command> macros.
4183 </para>
4184 </listitem>
4185
4186 </orderedlist>
4187
4188 </para>
4189
4190 </sect1>
4191
4192
4193 <sect1 id="platforms"><title>Platforms, scripts, and file names</title>
4194 <para>
4195 GHC is designed both to be built, and to run, on both Unix and Windows.  This flexibility
4196 gives rise to a good deal of brain-bending detail, which we have tried to collect in this chapter.
4197 </para>
4198
4199 <sect2 id="cygwin-and-mingw"><title>Windows platforms: Cygwin, MSYS, and MinGW</title>
4200
4201 <para> The build system is built around Unix-y makefiles.  Because it's not native,
4202 the Windows situation for building GHC is particularly confusing.  This section
4203 tries to clarify, and to establish terminology.</para>
4204
4205 <sect3 id="ghc-mingw"><title>MinGW</title>
4206
4207 <para> <ulink url="http://www.mingw.org">MinGW (Minimalist GNU for Windows)</ulink> 
4208 is a collection of header
4209 files and import libraries that allow one to use <command>gcc</command> and produce
4210 native Win32 programs that do not rely on any third-party DLLs. The
4211 current set of tools include GNU Compiler Collection (<command>gcc</command>), GNU Binary
4212 Utilities (Binutils), GNU debugger (Gdb), GNU make, and a assorted
4213 other utilities. 
4214 </para>
4215
4216 <para> The down-side of MinGW is that the MinGW libraries do not support anything like the full
4217 Posix interface.  
4218 </para>
4219 </sect3>
4220
4221 <sect3 id="ghc-cygwin"><title>Cygwin and MSYS</title>
4222
4223 <para>You can't use the MinGW to <emphasis>build</emphasis> GHC, because MinGW doesn't have a shell,
4224 or the standard Unix commands such as <command>mv</command>, <command>rm</command>,
4225 <command>ls</command>, nor build-system stuff such as <command>make</command> and <command>cvs</command>.
4226 For that, there are two choices: <ulink url="http://www.cygwin.com">Cygwin</ulink> 
4227 and <ulink url="http://www.mingw.org/msys.shtml">MSYS</ulink>:
4228
4229 <itemizedlist>
4230 <listitem><para>
4231 Cygwin comes with compilation tools (<command>gcc</command>, <command>ld</command> and so on), which
4232 compile code that has access to all of Posix.  The price is that the executables must be 
4233 dynamically linked with the Cygwin DLL, so that <emphasis>you cannot run a Cywin-compiled program on a machine
4234 that doesn't have Cygwin</emphasis>.  Worse, Cygwin is a moving target.  The name of the main DLL, <literal>cygwin1.dll</literal>
4235 does not change, but the implementation certainly does.  Even the interfaces to functions
4236 it exports seem to change occasionally. </para>
4237 </listitem>
4238
4239 <listitem><para>
4240 MSYS is a fork of the Cygwin tree, so they
4241 are fundamentally similar.  However, MSYS is by design much smaller and simpler.  Access to the file system goes
4242 through fewer layers, so MSYS is quite a bit faster too.
4243 </para>
4244
4245 <para>Furthermore, MSYS provides no compilation tools; it relies instead on the MinGW tools. These
4246 compile binaries that run with no DLL support, on any Win32 system.
4247 However, MSYS does come with all the make-system tools, such as <command>make</command>, <command>autoconf</command>, 
4248 <command>cvs</command>, <command>ssh</command> etc.  To get these, you have to download the 
4249 MsysDTK (Developer Tool Kit) package, as well as the base MSYS package.
4250 </para>
4251 <para>MSYS does have a DLL, but it's only used by MSYS commands (<command>sh</command>, <command>rm</command>, 
4252 <command>ssh</command> and so on),
4253 not by programs compiled under MSYS.
4254 </para></listitem>
4255
4256 </itemizedlist>
4257
4258 </para>
4259 </sect3>
4260
4261 <sect3><title>Targeting MinGW</title>
4262
4263 <para>We want GHC to compile programs that work on any Win32 system.  Hence:
4264 <itemizedlist>
4265 <listitem><para>
4266 GHC does invoke a C compiler, assembler, linker and so on, but we ensure that it only
4267 invokes the MinGW tools, not the Cygwin ones.  That means that the programs GHC compiles
4268 will work on any system, but it also means that the programs GHC compiles do not have access
4269 to all of Posix.  In particular, they cannot import the (Haskell) Posix 
4270 library; they have to do
4271 their input output using standard Haskell I/O libraries, or native Win32 bindings.</para>
4272 <para> We will call a GHC that targets MinGW in this way <emphasis>GHC-mingw</emphasis>.</para>
4273 </listitem>
4274
4275 <listitem><para>
4276 To make the GHC distribution self-contained, the GHC distribution includes the MinGW <command>gcc</command>,
4277 <command>as</command>, <command>ld</command>, and a bunch of input/output libraries.  
4278 </para></listitem>
4279 </itemizedlist>
4280 So <emphasis>GHC targets MinGW</emphasis>, not Cygwin.
4281 It is in principle possible to build a version of GHC, <emphasis>GHC-cygwin</emphasis>, 
4282 that targets Cygwin instead.  The up-side of GHC-cygwin is
4283 that Haskell programs compiled by GHC-cygwin can import the (Haskell) Posix library.
4284 <emphasis>We do not support GHC-cygwin, however; it is beyond our resources.</emphasis>
4285 </para>
4286
4287 <para>While GHC <emphasis>targets</emphasis> MinGW, that says nothing about 
4288 how GHC is <emphasis>built</emphasis>.  We use both MSYS and Cygwin as build environments for
4289 GHC; both work fine, though MSYS is rather lighter weight.</para>
4290
4291 <para>In your build tree, you build a compiler called <command>ghc-inplace</command>.  It
4292 uses the <command>gcc</command> that you specify using the
4293 <option>--with-gcc</option> flag when you run
4294 <command>configure</command> (see below).
4295 The makefiles are careful to use <command>ghc-inplace</command> (not <command>gcc</command>)
4296 to compile any C files, so that it will in turn invoke the correct <command>gcc</command> rather that
4297 whatever one happens to be in your path.  However, the makefiles do use whatever <command>ld</command> 
4298 and <command>ar</command> happen to be in your path. This is a bit naughty, but (a) they are only
4299 used to glom together .o files into a bigger .o file, or a .a file, 
4300 so they don't ever get libraries (which would be bogus; they might be the wrong libraries), and (b)
4301 Cygwin and MinGW use the same .o file format.  So its ok.
4302 </para>
4303 </sect3>
4304
4305 <sect3><title> File names </title>
4306
4307 <para>Cygwin, MSYS, and the underlying Windows file system all understand file paths of form <literal>c:/tmp/foo</literal>.
4308 However:
4309 <itemizedlist>
4310 <listitem><para>
4311 MSYS programs understand <filename>/bin</filename>, <filename>/usr/bin</filename>, and map Windows's lettered drives as
4312 <filename>/c/tmp/foo</filename> etc.  The exact mount table is given in the doc subdirectory of the MSYS distribution.
4313 </para>
4314 <para> When it invokes a command, the MSYS shell sees whether the invoked binary lives in the MSYS <filename>/bin</filename>
4315 directory.  If so, it just invokes it.  If not, it assumes the program is no an MSYS program, and walks over the command-line
4316 arguments changing MSYS paths into native-compatible paths.  It does this inside sub-arguments and inside quotes. For example,
4317 if you invoke
4318 <programlisting>foogle -B/c/tmp/baz</programlisting>
4319 the MSYS shell will actually call <literal>foogle</literal> with argument <literal>-Bc:/tmp/baz</literal>.
4320 </para></listitem>
4321
4322 <listitem><para>
4323 Cygwin programs have a more complicated mount table, and map the lettered drives as <filename>/cygdrive/c/tmp/foo</filename>.
4324 </para>
4325 <para>The Cygwin shell does no argument processing when invoking non-Cygwin programs.
4326 </para></listitem>
4327 </itemizedlist>
4328 </para>
4329 </sect3>
4330
4331 <sect3><title>Crippled <command>ld</command></title>
4332
4333 <para>
4334 It turns out that on both Cygwin and MSYS, the <command>ld</command> has a
4335 limit of 32kbytes on its command line.  Especially when using split object
4336 files, the make system can emit calls to <command>ld</command> with thousands
4337 of files on it.  Then you may see something like this:
4338 <programlisting>
4339 (cd Graphics/Rendering/OpenGL/GL/QueryUtils_split &amp;&amp; /mingw/bin/ld -r -x -o ../QueryUtils.o *.o)
4340 /bin/sh: /mingw/bin/ld: Invalid argument
4341 </programlisting>
4342 The solution is either to switch off object file splitting (set
4343 <option>SplitObjs</option> to <literal>NO</literal> in your
4344 <filename>build.mk</filename>),
4345 or to make the module smaller.
4346 </para>
4347 </sect3>
4348
4349 <sect3><title>Host System vs Target System</title>
4350
4351 <para>
4352 In the source code you'll find various ifdefs looking like:
4353 <programlisting>#ifdef mingw32_HOST_OS
4354   ...blah blah...
4355 #endif</programlisting>
4356 and 
4357 <programlisting>#ifdef mingw32_TARGET_OS
4358   ...blah blah...
4359 #endif</programlisting>
4360 These macros are set by the configure script (via the file config.h).
4361 Which is which?  The criterion is this.  In the ifdefs in GHC's source code:
4362 <itemizedlist>
4363   <listitem>
4364     <para>The "host" system is the one on which GHC itself will be run.</para>
4365   </listitem>
4366   <listitem>
4367     <para>The "target" system is the one for which the program compiled by GHC will be run.</para>
4368   </listitem>
4369 </itemizedlist>
4370 For a stage-2 compiler, in which GHCi is available, the "host" and "target" systems must be the same.
4371 So then it doesn't really matter whether you use the HOST_OS or TARGET_OS cpp macros.
4372
4373 </para>
4374 </sect3>
4375
4376 </sect2>
4377
4378 <sect2><title>Wrapper scripts</title>
4379
4380 <para>
4381 Many programs, including GHC itself and hsc2hs, need to find associated binaries and libraries.
4382 For <emphasis>installed</emphasis> programs, the strategy depends on the platform.  We'll use
4383 GHC itself as an example:
4384 <itemizedlist>
4385   <listitem> <para>
4386   On Unix, the command <command>ghc</command> is a shell script, generated by adding installation
4387   paths to the front of the source file <filename>ghc.sh</filename>, 
4388   that invokes the real binary, passing "-B<emphasis>path</emphasis>" as an argument to tell <command>ghc</command>
4389   where to find its supporting files. 
4390   </para> </listitem>
4391
4392   <listitem> <para>
4393   On vanilla Windows, it turns out to be much harder to make reliable script to be run by the
4394   native Windows shell <command>cmd</command> (e.g. limits on the length
4395    of the command line).  So instead we invoke the GHC binary directly, with no -B flag.
4396   GHC uses the Windows <literal>getExecDir</literal> function to find where the executable is,
4397   and from that figures out where the supporting files are.
4398   </para> </listitem>
4399 </itemizedlist>
4400 (You can find the layout of GHC's supporting files in the
4401   section "Layout of installed files" of Section 2 of the GHC user guide.)
4402 </para>
4403 <para>
4404 Things work differently for <emphasis>in-place</emphasis> execution, where you want to
4405 execute a program that has just been built in a build tree. The difference is that the
4406 layout of the supporting files is different.
4407 In this case, whether on Windows or Unix, we always use a shell script. This works OK
4408 on Windows because the script is executed by MSYS or Cygwin, which don't have the
4409 shortcomings of the native Windows <command>cmd</command> shell.
4410 </para>
4411
4412 </sect2>
4413
4414 </sect1>
4415
4416 <sect1 id="winbuild"><title>Instructions for building under Windows</title>
4417
4418 <para>
4419 This section gives detailed instructions for how to build 
4420 GHC from source on your Windows machine. Similar instructions for
4421 installing and running GHC may be found in the user guide. In general,
4422 Win95/Win98 behave the same, and WinNT/Win2k behave the same.
4423 </para>
4424 <para>
4425 Make sure you read the preceding section on platforms (<xref linkend="platforms"/>)
4426 before reading section.
4427 You don't need Cygwin or MSYS to <emphasis>use</emphasis> GHC, 
4428 but you do need one or the other to <emphasis>build</emphasis> GHC.</para>
4429
4430
4431 <sect2 id="msys-install"><title>Installing and configuring MSYS</title>
4432
4433 <para>
4434 MSYS is a lightweight alternative to Cygwin.  
4435 You don't need MSYS to <emphasis>use</emphasis> GHC, 
4436 but you do need it or Cygwin to <emphasis>build</emphasis> GHC.
4437 Here's how to install MSYS.
4438 <itemizedlist>
4439 <listitem><para>
4440 Go to <ulink url="http://www.mingw.org/download.shtml">http://www.mingw.org/download.shtml</ulink> and 
4441 download the following (of course, the version numbers will differ):
4442 <itemizedlist>
4443   <listitem><para>The main MSYS package (binary is sufficient): <literal>MSYS-1.0.9.exe</literal>
4444   </para></listitem>
4445   <listitem><para>The MSYS developer's toolkit (binary is sufficient): <literal>msysDTK-1.0.1.exe</literal>.
4446                     This provides <command>make</command>, <command>autoconf</command>, 
4447                     <command>ssh</command>, <command>cvs</command> and probably more besides.
4448   </para></listitem>
4449 </itemizedlist>
4450 Run both executables (in the order given above) to install them.  I put them in <literal>c:/msys</literal>
4451 </para></listitem>
4452
4453 <listitem><para>
4454 Set the following environment variables
4455 <itemizedlist>
4456    <listitem><para><literal>PATH</literal>: add <literal>c:/msys/1.0/bin</literal> and 
4457                     <literal>c:/msys/1.0/local/bin</literal>
4458                     to your path.  (Of course, the version number may differ.)
4459                     MSYS mounts the former as both <literal>/bin</literal> and 
4460                     <literal>/usr/bin</literal> and the latter as <literal>/usr/local/bin</literal>.
4461   </para></listitem>
4462
4463   <listitem><para><literal>HOME</literal>: set to your home directory (e.g. <literal>c:/userid</literal>).
4464   This is where, among other things, <command>ssh</command> will look for your <literal>.ssh</literal> directory.
4465   </para></listitem>  
4466
4467   <listitem><para><literal>SHELL</literal>: set to <literal>c:/msys/1.0/bin/sh.exe</literal>
4468   </para></listitem>
4469
4470   <listitem><para><literal>CVS_RSH</literal>: set to <literal>c:/msys/1.0/bin/ssh.exe</literal>.  Only necessary if
4471               you are using CVS.
4472   </para></listitem>
4473
4474   <listitem><para><literal>MAKE_MODE</literal>: set to <literal>UNIX</literal>.  (I'm not certain this is necessary for MSYS.)
4475   </para></listitem>
4476
4477 </itemizedlist>
4478 </para></listitem>
4479
4480 <listitem><para>
4481 Check that the <literal>CYGWIN</literal> environment variable is <emphasis>not</emphasis> set.  It's a bad bug
4482 that MSYS is affected by this, but if you have CYGWIN set to "ntsec ntea", which is right for Cygwin, it
4483 causes the MSYS <command>ssh</command> to bogusly fail complaining that your <filename>.ssh/identity</filename>
4484 file has too-liberal permissinos.
4485 </para></listitem>
4486
4487 </itemizedlist>
4488 </para>
4489 <para>Here are some points to bear in mind when using MSYS:
4490 <itemizedlist>
4491 <listitem> <para> MSYS does some kind of special magic to binaries stored in 
4492 <filename>/bin</filename> and <filename>/usr/bin</filename>, which are by default both mapped
4493 to <filename>c:/msys/1.0/bin</filename> (assuming you installed MSYS in <filename>c:/msys</filename>).
4494 Do not put any other binaries (such as GHC or Alex) in this directory or its sub-directories: 
4495 they fail in mysterious ways.  However, it's fine to put other binaries in <filename>/usr/local/bin</filename>,
4496 which maps to <filename>c:/msys/1.0/local/bin</filename>.</para></listitem>
4497
4498 <listitem> <para> MSYS seems to implement symbolic links by copying, so sharing is lost.
4499 </para></listitem>
4500
4501 <listitem> <para>
4502 Win32 has a <command>find</command> command which is not the same as MSYS's find.
4503 You will probably discover that the Win32 <command>find</command> appears in your <constant>PATH</constant>
4504 before the MSYS one, because it's in the <emphasis>system</emphasis> <constant>PATH</constant> 
4505 environment variable, whereas you have probably modified the <emphasis>user</emphasis> <constant>PATH</constant> 
4506 variable.  You can always invoke <command>find</command> with an absolute path, or rename it.
4507 </para></listitem>
4508
4509 <listitem> <para>
4510 MSYS comes with <command>bzip</command>, and MSYS's <command>tar</command>'s <literal>-j</literal> 
4511 will bunzip an archive (e.g. <literal>tar xvjf foo.tar.bz2</literal>).  Useful when you get a
4512 bzip'd dump.</para></listitem>
4513
4514 </itemizedlist>
4515 </para>
4516 </sect2>
4517
4518 <sect2><title>Installing and configuring Cygwin</title>
4519
4520 <para> Install Cygwin from <ulink url="http://www.cygwin.com/">http://www.cygwin.com/</ulink>.
4521 The installation process is straightforward; we install it in <filename>c:/cygwin</filename>.
4522 During the installation dialogue, make sure that you select all of the following:
4523               <command>cvs</command>, 
4524               <command>openssh</command>,
4525               <command>autoconf</command>,
4526               <command>binutils</command> (includes ld and (I think) ar),
4527               <command>gcc</command>,
4528               <command>flex</command>,
4529               <command>make</command>.
4530 If you miss out any of these, strange things will happen to you.   To see thse packages, 
4531 click on the "View" button in the "Select Packages" 
4532 stage of Cygwin's installation dialogue, until the view says "Full".  The default view, which is
4533 "Category" isn't very helpful, and the "View" button is rather unobtrousive.
4534 </para>
4535 <para> Now set the following user environment variables:
4536 <itemizedlist>
4537
4538 <listitem><para> Add <filename>c:/cygwin/bin</filename> and <filename>c:/cygwin/usr/bin</filename> to your 
4539 <constant>PATH</constant></para></listitem>
4540
4541 <listitem>
4542 <para>
4543 Set <constant>MAKE_MODE</constant> to <literal>UNIX</literal>. If you
4544 don't do this you get very weird messages when you type
4545 <command>make</command>, such as:
4546 <screen>/c: /c: No such file or directory</screen>
4547 </para>
4548 </listitem>
4549
4550 <listitem><para> Set <constant>SHELL</constant> to
4551 <filename>c:/cygwin/bin/bash</filename>. When you invoke a shell in Emacs, this
4552 <constant>SHELL</constant> is what you get.
4553 </para></listitem>
4554
4555 <listitem><para> Set <constant>HOME</constant> to point to your 
4556 home directory.  This is where, for example,
4557 <command>bash</command> will look for your <filename>.bashrc</filename>
4558 file.  Ditto <command>emacs</command> looking for <filename>.emacsrc</filename>
4559 </para></listitem>
4560 </itemizedlist>
4561 </para>
4562
4563 <para>
4564 There are a few other things to do:
4565 <itemizedlist>
4566 <listitem>
4567 <para>
4568 By default, cygwin provides the command shell <filename>ash</filename>
4569 as <filename>sh.exe</filename>. We have often seen build-system problems that 
4570 turn out to be due to bugs in <filename>ash</filename>
4571 (to do with quoting
4572 and length of command lines).  On the other hand <filename>bash</filename> seems
4573 to be rock solid.
4574 So, in <filename>cygwin/bin</filename>
4575 remove the supplied <filename>sh.exe</filename> (or rename it as <filename>ash.exe</filename>),
4576 and copy <filename>bash.exe</filename> to  <filename>sh.exe</filename>.
4577 You'll need to do this in Windows Explorer or the Windows <command>cmd</command> shell, because
4578 you can't rename a running program!
4579 </para>
4580 </listitem>
4581
4582 <listitem>
4583 <para>
4584 Some script files used in the make system start with "<command>#!/bin/perl</command>",
4585 (and similarly for <command>sh</command>).  Notice the hardwired path!
4586 So you need to ensure that your <filename>/bin</filename> directory has the following
4587 binaries in it:
4588 <itemizedlist>
4589 <listitem> <para><command>sh</command></para></listitem>
4590 <listitem> <para><command>perl</command></para></listitem>
4591 <listitem> <para><command>cat</command></para></listitem>
4592 </itemizedlist>
4593 All these come in Cygwin's <filename>bin</filename> directory, which you probably have
4594 installed as <filename>c:/cygwin/bin</filename>.  By default Cygwin mounts "<filename>/</filename>" as
4595 <filename>c:/cygwin</filename>, so if you just take the defaults it'll all work ok.
4596 (You can discover where your Cygwin
4597 root directory <filename>/</filename> is by typing <command>mount</command>.)
4598 Provided <filename>/bin</filename> points to the Cygwin <filename>bin</filename>
4599 directory, there's no need to copy anything.  If not, copy these binaries from the <filename>cygwin/bin</filename>
4600 directory (after fixing the <filename>sh.exe</filename> stuff mentioned in the previous bullet).
4601 </para>
4602 </listitem>
4603 </itemizedlist>
4604 </para>
4605
4606 <para>Finally, here are some things to be aware of when using Cygwin:
4607 <itemizedlist>
4608 <listitem> <para>Cygwin doesn't deal well with filenames that include
4609 spaces. "<filename>Program Files</filename>" and "<filename>Local files</filename>" are
4610 common gotchas.
4611 </para></listitem>
4612
4613 <listitem> <para> Cygwin implements a symbolic link as a text file with some
4614 magical text in it.  So other programs that don't use Cygwin's
4615 I/O libraries won't recognise such files as symlinks.  
4616 In particular, programs compiled by GHC are meant to be runnable
4617 without having Cygwin, so they don't use the Cygwin library, so
4618 they don't recognise symlinks.
4619 </para></listitem>
4620
4621 <listitem> <para>
4622 See the notes in <xref linkend="msys-install"/> about <command>find</command> and <command>bzip</command>,
4623 which apply to Cygwin too.
4624 </para></listitem>
4625 </itemizedlist>
4626 </para>
4627
4628 </sect2>
4629
4630
4631 <sect2 id="configure-ssh"><title>Configuring SSH</title>
4632
4633 <para><command>ssh</command> comes with Cygwin, provided you remember to ask for it when
4634 you install Cygwin.  (If not, the installer lets you update easily.)  Look for <command>openssh</command> 
4635 (not ssh) in the Cygwin list of applications!</para>
4636
4637 <para>There are several strange things about <command>ssh</command> on Windows that you need to know.
4638 <itemizedlist>
4639 <listitem>
4640 <para>
4641        The programs <command>ssh-keygen1</command>, <command>ssh1</command>, and <command>cvs</command>,
4642        seem to lock up <command>bash</command> entirely if they try to get user input (e.g. if
4643        they ask for a password).  To solve this, start up <filename>cmd.exe</filename> 
4644        and run it as follows:
4645 <screen>c:\tmp> set CYGWIN32=tty
4646 c:\tmp> c:/user/local/bin/ssh-keygen1</screen> </para>
4647 </listitem>
4648
4649 <listitem><para> (Cygwin-only problem, I think.)
4650 <command>ssh</command> needs to access your directory <filename>.ssh</filename>, in your home directory.  
4651 To determine your home directory <command>ssh</command> first looks in 
4652 <filename>c:/cygwin/etc/passwd</filename> (or wherever you have Cygwin installed).  If there's an entry
4653 there with your userid, it'll use that entry to determine your home directory, <emphasis>ignoring
4654 the setting of the environment variable $HOME</emphasis>.  If the home directory is
4655 bogus, <command>ssh</command> fails horribly.   The best way to see what is going on is to say
4656 <screen>ssh -v cvs.haskell.org</screen>
4657 which makes <command>ssh</command> print out information about its activity.
4658 </para>
4659 <para> You can fix this problem, either by correcting the home-directory field in 
4660 <filename>c:/cygwin/etc/passwd</filename>, or by simply deleting the entire entry for your userid. If
4661 you do that, <command>ssh</command> uses the $HOME environment variable instead.
4662 </para>
4663
4664 </listitem>
4665
4666 <listitem>
4667             <para>To protect your
4668             <literal>.ssh</literal> from access by anyone else,
4669             right-click your <literal>.ssh</literal> directory, and
4670             select <literal>Properties</literal>.  If you are not on
4671             the access control list, add yourself, and give yourself
4672             full permissions (the second panel).  Remove everyone else
4673             from the access control list.  Don't leave them there but
4674             deny them access, because 'they' may be a list that
4675             includes you!</para>
4676 </listitem>
4677
4678 <listitem>
4679             <para>In fact <command>ssh</command> 3.6.1 now seems to <emphasis>require</emphasis>
4680               you to have Unix permissions 600 (read/write for owner only) 
4681               on the <literal>.ssh/identity</literal> file, else it 
4682               bombs out.  For your local C drive, it seems that <literal>chmod 600 identity</literal> works,
4683               but on Windows NT/XP, it doesn't work on a network drive (exact dteails obscure).  
4684               The solution seems to be to set the $CYGWIN environment
4685               variable to "<literal>ntsec neta</literal>".  The $CYGWIN environment variable is discussed
4686               in <ulink url="http://cygwin.com/cygwin-ug-net/using-cygwinenv.html">the Cygwin User's Guide</ulink>,
4687               and there are more details in <ulink url="http://cygwin.com/faq/faq_4.html#SEC44">the Cygwin FAQ</ulink>.
4688               </para>
4689 </listitem>
4690 </itemizedlist>
4691 </para>
4692 </sect2>
4693
4694 <sect2><title>Other things you need to install</title>
4695
4696 <para>You have to install the following other things to build GHC, listed below.</para>
4697
4698 <para>On Windows you often install executables in directories with spaces, such as 
4699 "<filename>Program Files</filename>". However, the <literal>make</literal> system for fptools doesn't 
4700 deal with this situation (it'd have to do more quoting of binaries), so you are strongly advised
4701 to put binaries for all tools in places with no spaces in their path.
4702 On both MSYS and Cygwin, it's perfectly OK to install such programs in the standard Unixy places,
4703 <filename>/usr/local/bin</filename> and <filename>/usr/local/lib</filename>.  But it doesn't matter,
4704 provided they are in your path.
4705 <itemizedlist>
4706 <listitem>
4707 <para>
4708 Install an executable GHC, from <ulink url="http://www.haskell.org/ghc">http://www.haskell.org/ghc</ulink>.
4709 This is what you will use to compile GHC.  Add it in your
4710 <constant>PATH</constant>: the installer tells you the path element
4711 you need to add upon completion.
4712 </para>
4713 </listitem>
4714
4715 <listitem>
4716 <para>
4717 Install an executable Happy, from <ulink url="http://www.haskell.org/happy">http://www.haskell.org/happy</ulink>.
4718 Happy is a parser generator used to compile the Haskell grammar.  Under MSYS or Cygwin you can easily
4719 build it from the source distribution using
4720 <screen>$ ./configure
4721 $ make
4722 $ make install</screen>
4723 This should install it in <filename>/usr/local/bin</filename> (which maps to <filename>c:/msys/1.0/local/bin</filename>
4724 on MSYS).
4725 Make sure the installation directory is in your
4726 <constant>PATH</constant>.
4727 </para>
4728 </listitem>
4729
4730           <listitem>
4731             <para>Install an executable Alex.  This can be done by building from the
4732             source distribution in the same way as Happy.  Sources are
4733             available from <ulink
4734             url="http://www.haskell.org/alex">http://www.haskell.org/alex</ulink>.</para>
4735           </listitem>
4736
4737 <listitem>
4738 <para>GHC uses the <emphasis>mingw</emphasis> C compiler to
4739 generate code, so you have to install that (see <xref linkend="cygwin-and-mingw"/>). 
4740 Just pick up a mingw bundle at
4741 <ulink url="http://www.mingw.org/">http://www.mingw.org/</ulink>.
4742 We install it in <filename>c:/mingw</filename>.
4743 </para>
4744
4745 <para><emphasis>On MSYS</emphasis>, add <literal>c:/mingw/bin</literal> to your PATH. MSYS does not provide <command>gcc</command>,
4746 <command>ld</command>, <command>ar</command>, and so on, because it just uses the MinGW ones.  So you need them
4747 in your path.
4748 </para>
4749
4750 <para><emphasis>On Cygwin, do not</emphasis> add any of the <emphasis>mingw</emphasis> binaries to your  path.
4751 They are only going to get used by explicit access (via the --with-gcc flag you
4752 give to <command>configure</command> later).  If you do add them to your path
4753 you are likely to get into a mess because their names overlap with Cygwin binaries.
4754 </para>
4755 </listitem>
4756
4757
4758 <listitem>
4759 <para>We use <command>emacs</command> a lot, so we install that too.
4760 When you are in <filename>fptools/ghc/compiler</filename>, you can use
4761 "<literal>make tags</literal>" to make a TAGS file for emacs.  That uses the utility
4762 <filename>fptools/ghc/utils/hasktags/hasktags</filename>, so you need to make that first.
4763 The most convenient way to do this is by going <literal>make boot</literal> in <filename>fptools/ghc</filename>.
4764 The <literal>make tags</literal> command also uses <command>etags</command>, which comes with <command>emacs</command>,
4765 so you will need to add <filename>emacs/bin</filename> to your <literal>PATH</literal>.
4766 </para>
4767 </listitem>
4768
4769
4770 <listitem>
4771 <para> Finally, check out a copy of GHC sources from
4772 the CVS repository, following the instructions above (<xref linkend="cvs-access"/>).
4773 </para>
4774 </listitem>
4775 </itemizedlist>
4776 </para>
4777 </sect2>
4778
4779 <sect2><title>Building GHC</title>
4780
4781 <para>OK!  
4782 Now go read the documentation above on building from source (<xref linkend="sec-building-from-source"/>); 
4783 the bullets below only tell
4784 you about Windows-specific wrinkles.</para>
4785 <itemizedlist>
4786 <listitem>
4787 <para>
4788 If you used <command>autoconf</command> instead of <command>autoreconf</command>,
4789 you'll get an error when you run <filename>./configure</filename>:
4790 <screen>
4791 ...lots of stuff...
4792 creating mk/config.h
4793 mk/config.h is unchanged
4794 configuring in ghc
4795 running /bin/sh ./configure  --cache-file=.././config.cache --srcdir=.
4796 ./configure: ./configure: No such file or directory
4797 configure: error: ./configure failed for ghc</screen>
4798 </para>
4799 </listitem>
4800
4801 <listitem> <para><command>autoreconf</command> seems to create the file <filename>configure</filename>
4802 read-only.  So if you need to run autoreconf again (which I sometimes do for safety's sake),
4803 you get
4804 <screen>/usr/bin/autoconf: cannot create configure: permission denied</screen>
4805 Solution: delete <filename>configure</filename> first.
4806 </para></listitem>
4807
4808 <listitem>
4809   <para> 
4810     After <command>autoreconf</command> run <command>./configure</command> in
4811     <filename>fptools/</filename> thus:
4812
4813 <screen>$ ./configure --host=i386-unknown-mingw32 --with-gcc=c:/mingw/bin/gcc</screen>
4814 This is the point at which you specify that you are building GHC-mingw
4815 (see <xref linkend="ghc-mingw"/>). </para>
4816
4817 <para> Both these options are important! It's possible to get into
4818 trouble using the wrong C compiler!</para>
4819 <para>
4820 Furthermore, it's <emphasis>very important</emphasis> that you specify a 
4821 full MinGW path for <command>gcc</command>, not a Cygwin path, because GHC (which
4822 uses this path to invoke <command>gcc</command>) is a MinGW program and won't
4823 understand a Cygwin path.  For example, if you 
4824 say <literal>--with-gcc=/mingw/bin/gcc</literal>, it'll be interpreted as
4825 <filename>/cygdrive/c/mingw/bin/gcc</filename>, and GHC will fail the first
4826 time it tries to invoke it.   Worse, the failure comes with
4827 no error message whatsoever.  GHC simply fails silently when first invoked, 
4828 typically leaving you with this:
4829 <screen>make[4]: Leaving directory `/cygdrive/e/fptools-stage1/ghc/rts/gmp'
4830 ../../ghc/compiler/ghc-inplace -optc-mno-cygwin -optc-O 
4831   -optc-Wall -optc-W -optc-Wstrict-prototypes -optc-Wmissing-prototypes 
4832   -optc-Wmissing-declarations -optc-Winline -optc-Waggregate-return 
4833   -optc-Wbad-function-cast -optc-Wcast-align -optc-I../includes 
4834   -optc-I. -optc-Iparallel -optc-DCOMPILING_RTS 
4835   -optc-fomit-frame-pointer -O2 -static 
4836   -package-name rts -O -dcore-lint -c Adjustor.c -o Adjustor.o
4837 make[2]: *** [Adjustor.o] Error 1
4838 make[1]: *** [all] Error 1
4839 make[1]: Leaving directory `/cygdrive/e/fptools-stage1/ghc'
4840 make: *** [all] Error 1</screen>
4841 Be warned!
4842 </para>
4843
4844 <para>
4845 If you want to build GHC-cygwin (<xref linkend="ghc-cygwin"/>)
4846 you'll have to do something more like:
4847 <screen>$ ./configure --with-gcc=...the Cygwin gcc...</screen>
4848 </para>
4849 </listitem>
4850
4851 <listitem><para>
4852 If you are paranoid, delete <filename>config.cache</filename> if it exists.
4853 This file occasionally remembers out-of-date configuration information, which 
4854 can be really confusing.
4855 </para>
4856 </listitem>
4857
4858 <listitem><para> You almost certainly want to set
4859 <programlisting>SplitObjs = NO</programlisting>
4860 in your <filename>build.mk</filename> configuration file (see <xref linkend="sec-build-config"/>).
4861 This tells the build system not to split each library into a myriad of little object files, one
4862 for each function.  Doing so reduces binary sizes for statically-linked binaries, but on Windows
4863 it dramatically increases the time taken to build the libraries in the first place.
4864 </para>
4865 </listitem>
4866
4867 <listitem><para> Do not attempt to build the documentation.
4868 It needs all kinds of wierd Jade stuff that we haven't worked out for
4869 Win32.</para></listitem>
4870 </itemizedlist>
4871 </sect2>
4872
4873
4874 </sect1>
4875
4876 <index/>
4877
4878 </article>