[project @ 2000-09-26 15:58:25 by simonpj]
[ghc-hetmet.git] / ghc / docs / users_guide / using.sgml
1 <Chapter id="using-GHC">
2 <Title>Using GHC
3 </Title>
4
5 <Para>
6 <IndexTerm><Primary>GHC, using</Primary></IndexTerm>
7 <IndexTerm><Primary>using GHC</Primary></IndexTerm>
8 GHC is a command-line compiler: in order to compile a Haskell program,
9 GHC must be invoked on the source file(s) by typing a command to the
10 shell.  The steps involved in compiling a program can be automated
11 using the <Command>make</Command> tool (this is especially useful if the program
12 consists of multiple source files which depend on each other).  This
13 section describes how to use GHC from the command-line.
14 </Para>
15
16 <Sect1 id="command-line-structure">
17 <Title>Overall command-line structure
18 </Title>
19
20 <Para>
21 <IndexTerm><Primary>structure, command-line</Primary></IndexTerm>
22 <IndexTerm><Primary>command-line structure</Primary></IndexTerm>
23 </Para>
24
25 <Para>
26 An invocation of GHC takes the following form:
27 </Para>
28
29 <Para>
30
31 <Screen>
32 ghc [argument...]
33 </Screen>
34
35 </Para>
36
37 <Para>
38 Command-line arguments are either options or file names.
39 </Para>
40
41 <Para>
42 Command-line options begin with <Literal>-</Literal>.  They may <Emphasis>not</Emphasis> be
43 grouped: <Option>-vO</Option> is different from <Option>-v -O</Option>.  Options need not
44 precede filenames: e.g., <Command>ghc *.o -o foo</Command>.  All options are
45 processed and then applied to all files; you cannot, for example, invoke
46 <Command>ghc -c -O1 Foo.hs -O2 Bar.hs</Command> to apply different optimisation
47 levels to the files <Filename>Foo.hs</Filename> and <Filename>Bar.hs</Filename>.  For conflicting
48 options, e.g., <Option>-c -S</Option>, we reserve the right to do anything we
49 want.  (Usually, the last one applies.)
50 </Para>
51
52 </Sect1>
53
54 <Sect1 id="file-suffixes">
55 <Title>Meaningful file suffixes
56 </Title>
57
58 <Para>
59 <IndexTerm><Primary>suffixes, file</Primary></IndexTerm>
60 <IndexTerm><Primary>file suffixes for GHC</Primary></IndexTerm>
61 </Para>
62
63 <Para>
64 File names with &ldquo;meaningful&rdquo; suffixes (e.g., <Filename>.lhs</Filename> or <Filename>.o</Filename>)
65 cause the &ldquo;right thing&rdquo; to happen to those files.
66 </Para>
67
68 <Para>
69 <VariableList>
70
71 <VarListEntry>
72 <Term><Filename>.lhs</Filename>:</Term>
73 <ListItem>
74 <Para>
75 <IndexTerm><Primary>lhs suffix</Primary></IndexTerm>
76 A &ldquo;literate Haskell&rdquo; module.
77 </Para>
78 </ListItem>
79 </VarListEntry>
80 <VarListEntry>
81 <Term><Filename>.hs</Filename>:</Term>
82 <ListItem>
83 <Para>
84 A not-so-literate Haskell module.
85 </Para>
86 </ListItem>
87 </VarListEntry>
88 <VarListEntry>
89 <Term><Filename>.hi</Filename>:</Term>
90 <ListItem>
91 <Para>
92 A Haskell interface file, probably compiler-generated.
93 </Para>
94 </ListItem>
95 </VarListEntry>
96 <VarListEntry>
97 <Term><Filename>.hc</Filename>:</Term>
98 <ListItem>
99 <Para>
100 Intermediate C file produced by the Haskell compiler.
101 </Para>
102 </ListItem>
103 </VarListEntry>
104 <VarListEntry>
105 <Term><Filename>.c</Filename>:</Term>
106 <ListItem>
107 <Para>
108 A C&nbsp;file not produced by the Haskell compiler.
109 </Para>
110 </ListItem>
111 </VarListEntry>
112 <VarListEntry>
113 <Term><Filename>.s</Filename>:</Term>
114 <ListItem>
115 <Para>
116 An assembly-language source file, usually
117 produced by the compiler.
118 </Para>
119 </ListItem>
120 </VarListEntry>
121 <VarListEntry>
122 <Term><Filename>.o</Filename>:</Term>
123 <ListItem>
124 <Para>
125 An object file, produced by an assembler.
126 </Para>
127 </ListItem>
128 </VarListEntry>
129 </VariableList>
130 </Para>
131
132 <Para>
133 Files with other suffixes (or without suffixes) are passed straight
134 to the linker.
135 </Para>
136
137 </Sect1>
138
139 <Sect1 id="options-help">
140 <Title>Help and verbosity options
141 </Title>
142
143 <Para>
144 <IndexTerm><Primary>help options (GHC)</Primary></IndexTerm>
145 <IndexTerm><Primary>verbose option (GHC)</Primary></IndexTerm>
146 </Para>
147
148 <Para>
149 A good option to start with is the <Option>-help</Option> (or <Option>-?</Option>) option.
150 <IndexTerm><Primary>-help option</Primary></IndexTerm>
151 <IndexTerm><Primary>-? option</Primary></IndexTerm>
152 GHC spews a long message to standard output and then exits.
153 </Para>
154
155 <Para>
156 The <Option>-v</Option><IndexTerm><Primary>-v option</Primary></IndexTerm> option makes GHC <Emphasis>verbose</Emphasis>: it
157 reports its version number and shows (on stderr) exactly how it invokes each
158 phase of the compilation system.  Moreover, it passes
159 the <Option>-v</Option> flag to most phases; each reports
160 its version number (and possibly some other information).
161 </Para>
162
163 <Para>
164 Please, oh please, use the <Option>-v</Option> option when reporting bugs!
165 Knowing that you ran the right bits in the right order is always the
166 first thing we want to verify.
167 </Para>
168
169 <Para>
170 If you're just interested in the compiler version number, the
171 <Option>--version</Option><IndexTerm><Primary>--version option</Primary></IndexTerm> option prints out a
172 one-line string containing the requested info.
173 </Para>
174
175 </Sect1>
176
177 <Sect1 id="options-order">
178 <Title>Running the right phases in the right order
179 </Title>
180
181 <Para>
182 <IndexTerm><Primary>order of passes in GHC</Primary></IndexTerm>
183 <IndexTerm><Primary>pass ordering in GHC</Primary></IndexTerm>
184 The basic task of the <Command>ghc</Command> driver is to run each input file
185 through the right phases (compiling, linking, etc.).
186 </Para>
187
188 <Para>
189 The first phase to run is determined by the input-file suffix, and the
190 last phase is determined by a flag.  If no relevant flag is present,
191 then go all the way through linking.  This table summarises:
192 </Para>
193
194 <Para>
195 <InformalTable>
196 <TGroup Cols="4">
197 <ColSpec Align="Left">
198 <ColSpec Align="Left">
199 <ColSpec Align="Left">
200 <ColSpec Align="Left">
201 <TBody>
202
203 <Row>
204 <Entry>Phase of the compilation system</Entry>
205 <Entry>Suffix saying &ldquo;start here&rdquo;</Entry>
206 <Entry>Flag saying &ldquo;stop after&rdquo;</Entry>
207 <Entry>(suffix of) output file</Entry>
208 </Row>
209
210 <Row>
211 <Entry>
212 literate pre-processor </Entry>
213 <Entry> .lhs </Entry>
214 <Entry> - </Entry>
215 <Entry> - </Entry>
216 </Row>
217 <Row>
218 <Entry>
219 C pre-processor (opt.) </Entry>
220 <Entry> - </Entry>
221 <Entry> - </Entry>
222 <Entry> - </Entry>
223 </Row>
224 <Row>
225 <Entry>
226 Haskell compiler </Entry>
227 <Entry> .hs </Entry>
228 <Entry> -C, -S </Entry>
229 <Entry> .hc, .s </Entry>
230 </Row>
231 <Row>
232 <Entry>
233 C compiler (opt.) </Entry>
234 <Entry> .hc or .c </Entry>
235 <Entry> -S </Entry>
236 <Entry> .s </Entry>
237 </Row>
238 <Row>
239 <Entry>
240 assembler </Entry>
241 <Entry> .s </Entry>
242 <Entry> -c </Entry>
243 <Entry> .o </Entry>
244 </Row>
245 <Row>
246 <Entry>
247 linker </Entry>
248 <Entry> other </Entry>
249 <Entry> - </Entry>
250 <Entry> a.out </Entry>
251 </Row>
252 </TBody>
253 </TGroup>
254 </InformalTable>
255
256 <IndexTerm><Primary>-C option</Primary></IndexTerm>
257 <IndexTerm><Primary>-S option</Primary></IndexTerm>
258 <IndexTerm><Primary>-c option</Primary></IndexTerm>
259 </Para>
260
261 <Para>
262 Thus, a common invocation would be: <Command>ghc -c Foo.hs</Command>
263 </Para>
264
265 <Para>
266 Note: What the Haskell compiler proper produces depends on whether a
267 native-code generator is used (producing assembly language) or not
268 (producing C).
269 </Para>
270
271 <Para>
272 The option <Option>-cpp</Option><IndexTerm><Primary>-cpp option</Primary></IndexTerm> must be given for the C
273 pre-processor phase to be run, that is, the pre-processor will be run
274 over your Haskell source file before continuing.
275 </Para>
276
277 <Para>
278 The option <Option>-E</Option><IndexTerm><Primary>-E option</Primary></IndexTerm> runs just the pre-processing
279 passes of the compiler, outputting the result on stdout before
280 stopping. If used in conjunction with -cpp, the output is the
281 code blocks of the original (literal) source after having put it
282 through the grinder that is the C pre-processor. Sans <Option>-cpp</Option>, the
283 output is the de-litted version of the original source.
284 </Para>
285
286 <Para>
287 The option <Option>-optcpp-E</Option><IndexTerm><Primary>-optcpp-E option</Primary></IndexTerm> runs just the
288 pre-processing stage of the C-compiling phase, sending the result to
289 stdout.  (For debugging or obfuscation contests, usually.)
290 </Para>
291
292 </Sect1>
293
294 <Sect1 id="options-output">
295 <Title>Re-directing the compilation output(s)
296 </Title>
297
298 <Para>
299 <IndexTerm><Primary>output-directing options</Primary></IndexTerm>
300 </Para>
301
302 <Para>
303 GHC's compiled output normally goes into a <Filename>.hc</Filename>, <Filename>.o</Filename>, etc., file,
304 depending on the last-run compilation phase.  The option <Option>-o
305 foo</Option><IndexTerm><Primary>-o option</Primary></IndexTerm> re-directs the output of that last-run
306 phase to file <Filename>foo</Filename>.
307 </Para>
308
309 <Para>
310 Note: this &ldquo;feature&rdquo; can be counterintuitive:
311 <Command>ghc -C -o foo.o foo.hs</Command> will put the intermediate C code in the
312 file <Filename>foo.o</Filename>, name notwithstanding!
313 </Para>
314
315 <Para>
316 EXOTICA: But the <Option>-o</Option> option isn't of much use if you have
317 <Emphasis>several</Emphasis> input files&hellip; Non-interface output files are
318 normally put in the same directory as their corresponding input file
319 came from.  You may specify that they be put in another directory
320 using the <Option>-odir &lt;dir&gt;</Option><IndexTerm><Primary>-odir &lt;dir&gt; option</Primary></IndexTerm> (the
321 &ldquo;Oh, dear&rdquo; option).  For example:
322 </Para>
323
324 <Para>
325
326 <Screen>
327 % ghc -c parse/Foo.hs parse/Bar.hs gurgle/Bumble.hs -odir `arch`
328 </Screen>
329
330 </Para>
331
332 <Para>
333 The output files, <Filename>Foo.o</Filename>, <Filename>Bar.o</Filename>, and <Filename>Bumble.o</Filename> would be
334 put into a subdirectory named after the architecture of the executing
335 machine (<Filename>sun4</Filename>, <Filename>mips</Filename>, etc).  The directory must already
336 exist; it won't be created.
337 </Para>
338
339 <Para>
340 Note that the <Option>-odir</Option> option does <Emphasis>not</Emphasis> affect where the
341 interface files are put.  In the above example, they would still be
342 put in <Filename>parse/Foo.hi</Filename>, <Filename>parse/Bar.hi</Filename>, and <Filename>gurgle/Bumble.hi</Filename>.
343 </Para>
344
345 <Para>
346 MORE EXOTICA: The <Option>-osuf &lt;suffix&gt;</Option><IndexTerm><Primary>-osuf &lt;suffix&gt;
347 option</Primary></IndexTerm> will change the <Filename>.o</Filename> file suffix for object files to
348 whatever you specify.  (We use this in compiling the prelude.).
349 Similarly, the <Option>-hisuf &lt;suffix&gt;</Option><IndexTerm><Primary>-hisuf &lt;suffix&gt;
350 option</Primary></IndexTerm> will change the <Filename>.hi</Filename> file suffix for non-system
351 interface files (see <XRef LinkEnd="hi-options">).
352 </Para>
353
354 <Para>
355 The <Option>-hisuf</Option>/<Option>-osuf</Option> game is useful if you want to compile a program
356 with both GHC and HBC (say) in the same directory.  Let HBC use the
357 standard <Filename>.hi</Filename>/<Filename>.o</Filename> suffixes; add <Option>-hisuf g&lowbar;hi -osuf g&lowbar;o</Option> to your
358 <Command>make</Command> rule for GHC compiling&hellip;
359 </Para>
360
361     <sect2 id="keeping-intermediates">
362       <title>Keeping Intermediate Files</title>
363       <indexterm><primary>intermediate files, saving</primary>
364       </indexterm>
365       <indexterm><primary><literal>.hc</literal> files, saving</primary>
366       </indexterm>
367       <indexterm><primary><literal>.s</literal> files, saving</primary>
368       </indexterm>
369
370       <para>The following options are useful for keeping certain
371       intermediate files around, when normally GHC would throw these
372       away after compilation:</para>
373
374       <variablelist>
375         <varlistentry>
376           <term><literal>-keep-hc-files</literal></term>
377           <indexterm>
378             <primary><literal>-keep-hc-files</literal></primary>
379           </indexterm>
380           <listitem>
381             <para>Keep intermediate <literal>.hc</literal> files when
382             doing <literal>.hs</literal>-to-<literal>.o</literal>
383             compilations via C (NOTE: <literal>.hc</literal> files
384             aren't generated when using the native code generator, you
385             may need to use <literal>-fvia-C</literal> to force them
386             to be produced).</para>
387           </listitem>
388         </varlistentry>
389
390         <varlistentry>
391           <term><literal>-keep-s-files</literal></term>
392           <indexterm>
393             <primary><literal>-keep-s-files</literal></primary>
394           </indexterm>
395           <listitem>
396             <para>Keep intermediate <literal>.s</literal> files.</para>
397           </listitem>
398         </varlistentry>
399
400         <varlistentry>
401           <term><literal>-keep-raw-s-files</literal></term>
402           <indexterm>
403             <primary><literal>-keep-raw-s-files</literal></primary>
404           </indexterm>
405           <listitem>
406             <para>Keep intermediate <literal>.raw-s</literal> files.
407             These are the direct output from the C compiler, before
408             GHC does &ldquo;assembly mangling&rdquo; to produce the
409             <literal>.s</literal> file.  Again, these are not produced
410             when using the native code generator.</para>
411           </listitem>
412         </varlistentry>
413
414         <varlistentry>
415           <term><literal>-keep-tmp-files</literal></term>
416           <indexterm>
417             <primary><literal>-keep-tmp-files</literal></primary>
418           </indexterm>
419           <indexterm>
420             <primary>temporary files</primary>
421             <secondary>keeping</secondary>
422           </indexterm>
423           <listitem>
424             <para>Instructs the GHC driver not to delete any of its
425             temporary files, which it normally keeps in
426             <literal>/tmp</literal> (or possibly elsewhere; see <xref
427             linkend="temp-files">).  Running GHC with
428             <literal>-v</literal> will show you what temporary files
429             were generated along the way.</para>
430           </listitem>
431         </varlistentry>
432       </variablelist>
433     </sect2>
434
435 <Sect2 id="saving-ghc-stderr">
436 <Title>Saving GHC's standard error output
437 </Title>
438
439 <Para>
440 <IndexTerm><Primary>standard error, saving</Primary></IndexTerm>
441 </Para>
442
443 <Para>
444 Sometimes, you may cause GHC to be rather chatty on standard error;
445 with <Option>-v</Option>, for example.  You can instruct GHC to <Emphasis>append</Emphasis> this
446 output to a particular log file with a <Option>-odump &lt;blah&gt;</Option><IndexTerm><Primary>-odump
447 &lt;blah&gt; option</Primary></IndexTerm> option.
448 </Para>
449
450 </Sect2>
451
452 <Sect2 id="temp-files">
453 <Title>Redirecting temporary files
454 </Title>
455
456       <indexterm>
457         <primary>temporary files</primary>
458         <secondary>redirecting</secondary>
459       </indexterm>
460
461 <Para>
462 If you have trouble because of running out of space in
463 <Filename>/tmp</Filename> (or wherever your installation thinks
464 temporary files should go), you may use the <Option>-tmpdir
465 &lt;dir&gt;</Option><IndexTerm><Primary>-tmpdir &lt;dir&gt;
466 option</Primary></IndexTerm> option to specify an alternate directory.
467 For example, <Option>-tmpdir .</Option> says to put temporary files in
468 the current working directory.
469 </Para>
470
471 <Para>
472 Alternatively, use your <Constant>TMPDIR</Constant> environment
473 variable.<IndexTerm><Primary>TMPDIR environment
474 variable</Primary></IndexTerm> Set it to the name of the directory
475 where temporary files should be put.  GCC and other programs will
476 honour the <Constant>TMPDIR</Constant> variable as well.
477 </Para>
478
479 <Para>
480 Even better idea: Set the <Constant>TMPDIR</Constant> variable when building GHC, and
481 never worry about <Constant>TMPDIR</Constant> again. (see the build documentation).
482 </Para>
483
484 </Sect2>
485
486 </Sect1>
487
488 <Sect1 id="options-sanity">
489 <Title>Warnings and sanity-checking
490 </Title>
491
492 <Para>
493 <IndexTerm><Primary>sanity-checking options</Primary></IndexTerm>
494 <IndexTerm><Primary>warnings</Primary></IndexTerm>
495 GHC has a number of options that select which types of non-fatal error
496 messages, otherwise known as warnings, can be generated during
497 compilation.  By default, you get a standard set of warnings which are
498 generally likely to indicate bugs in your program.  These are:
499 <Option>-fwarn-overlpapping-patterns</Option>, <Option>-fwarn-duplicate-exports</Option>, and
500 <Option>-fwarn-missing-methods</Option>.  The following flags are simple ways to
501 select standard &ldquo;packages&rdquo; of warnings:
502 </Para>
503
504 <Para>
505 <VariableList>
506
507 <VarListEntry>
508 <Term><Option>-Wnot</Option>:</Term>
509 <ListItem>
510 <Para>
511 <IndexTerm><Primary>-Wnot option</Primary></IndexTerm>
512 Turns off all warnings, including the standard ones.
513 </Para>
514 </ListItem>
515 </VarListEntry>
516
517 <VarListEntry>
518 <Term><Option>-w</Option>:</Term>
519 <ListItem>
520 <Para>
521 <IndexTerm><Primary>-w option</Primary></IndexTerm>
522 Synonym for <Option>-Wnot</Option>.
523 </Para>
524 </ListItem>
525 </VarListEntry>
526
527 <VarListEntry>
528 <Term><Option>-W</Option>:</Term>
529 <ListItem>
530 <Para>
531 <IndexTerm><Primary>-W option</Primary></IndexTerm>
532 Provides the standard warnings plus <Option>-fwarn-incomplete-patterns</Option>,
533 <Option>-fwarn-unused-imports</Option> and <Option>-fwarn-unused-binds</Option>.
534 </Para>
535 </ListItem>
536 </VarListEntry>
537
538 <VarListEntry>
539 <Term><Option>-Wall</Option>:</Term>
540 <ListItem>
541 <Para>
542 <IndexTerm><Primary>-Wall option</Primary></IndexTerm>
543 Turns on all warning options.
544 </Para>
545 </ListItem>
546 </VarListEntry>
547
548 </VariableList>
549 </Para>
550
551 <Para>
552 The full set of warning options is described below.  To turn off any
553 warning, simply give the corresponding <Option>-fno-warn-...</Option> option on
554 the command line.
555 </Para>
556
557 <Para>
558 <VariableList>
559
560 <VarListEntry>
561 <Term><Option>-fwarn-name-shadowing</Option>:</Term>
562 <ListItem>
563 <Para>
564 <IndexTerm><Primary>-fwarn-name-shadowing option</Primary></IndexTerm>
565 <IndexTerm><Primary>shadowing, warning</Primary></IndexTerm>This option causes a warning to be emitted whenever an inner-scope
566 value has the same name as an outer-scope value, i.e. the inner value
567 shadows the outer one.  This can catch typographical errors that turn
568 into hard-to-find bugs, e.g., in the inadvertent cyclic definition
569 <Literal>let x = ... x ... in</Literal>.
570 </Para>
571
572 <Para>
573 Consequently, this option does <Emphasis>not</Emphasis> allow cyclic recursive
574 definitions.
575 </Para>
576 </ListItem>
577 </VarListEntry>
578
579 <VarListEntry>
580 <Term><Option>-fwarn-overlapping-patterns</Option>:</Term>
581 <ListItem>
582 <Para>
583 <IndexTerm><Primary>-fwarn-overlapping-patterns option</Primary></IndexTerm>
584 <IndexTerm><Primary>overlapping patterns, warning</Primary></IndexTerm>
585 <IndexTerm><Primary>patterns, overlapping</Primary></IndexTerm>
586 By default, the compiler will warn you if a set of patterns are
587 overlapping, i.e.,
588 </Para>
589
590 <Para>
591 <ProgramListing>
592 f :: String -&#62; Int
593 f []     = 0
594 f (_:xs) = 1
595 f "2"    = 2
596 </ProgramListing>
597 </Para>
598
599 <Para>
600 where the last pattern match in <Function>f</Function> won't ever be reached, as the
601 second pattern overlaps it. More often than not, redundant patterns
602 is a programmer mistake/error, so this option is enabled by default.
603 </Para>
604 </ListItem>
605 </VarListEntry>
606
607 <VarListEntry>
608 <Term><Option>-fwarn-incomplete-patterns</Option>:</Term>
609 <ListItem>
610 <Para>
611 <IndexTerm><Primary>-fwarn-incomplete-patterns option</Primary></IndexTerm>
612 <IndexTerm><Primary>incomplete patterns, warning</Primary></IndexTerm>
613 <IndexTerm><Primary>patterns, incomplete</Primary></IndexTerm>
614 Similarly for incomplete patterns, the function <Function>g</Function> below will fail
615 when applied to non-empty lists, so the compiler will emit a warning
616 about this when <Option>-fwarn-incomplete-patterns</Option> is enabled.
617 </Para>
618
619 <Para>
620 <ProgramListing>
621 g [] = 2
622 </ProgramListing>
623 </Para>
624
625 <Para>
626 This option isn't enabled be default because it can be a bit noisy,
627 and it doesn't always indicate a bug in the program.  However, it's
628 generally considered good practice to cover all the cases in your
629 functions.
630 </Para>
631 </ListItem>
632 </VarListEntry>
633
634 <VarListEntry>
635 <Term><Option>-fwarn-missing-methods</Option>:</Term>
636 <ListItem>
637 <Para>
638 <IndexTerm><Primary>-fwarn-missing-methods option</Primary></IndexTerm>
639 <IndexTerm><Primary>missing methods, warning</Primary></IndexTerm>
640 <IndexTerm><Primary>methods, missing</Primary></IndexTerm>
641 This option is on by default, and warns you whenever an instance
642 declaration is missing one or more methods, and the corresponding
643 class declaration has no default declaration for them.
644 </Para>
645 </ListItem>
646 </VarListEntry>
647
648 <VarListEntry>
649 <Term><Option>-fwarn-missing-fields</Option>:</Term>
650 <ListItem>
651 <Para>
652 <IndexTerm><Primary>-fwarn-missing-fields option</Primary></IndexTerm>
653 <IndexTerm><Primary>missing fields, warning</Primary></IndexTerm>
654 <IndexTerm><Primary>fields, missing</Primary></IndexTerm>
655 This option is on by default, and warns you whenever the construction
656 of a labelled field constructor isn't complete, missing initializers
657 for one or more fields. While not an error (the missing fields are
658 initialised with bottoms), it is often an indication of a programmer
659 error.
660 </Para>
661 </ListItem>
662 </VarListEntry>
663
664 <VarListEntry>
665 <Term><Option>-fwarn-unused-imports</Option>:</Term>
666 <ListItem>
667 <Para>
668 <IndexTerm><Primary>-fwarn-unused-imports option</Primary></IndexTerm>
669 <IndexTerm><Primary>unused imports, warning</Primary></IndexTerm>
670 <IndexTerm><Primary>imports, unused</Primary></IndexTerm>
671 Report any objects that are explicitly imported but never used.
672 </Para>
673 </ListItem>
674 </VarListEntry>
675
676 <VarListEntry>
677 <Term><Option>-fwarn-unused-binds</Option>:</Term>
678 <ListItem>
679 <Para>
680 <IndexTerm><Primary>-fwarn-unused-binds option</Primary></IndexTerm>
681 <IndexTerm><Primary>unused binds, warning</Primary></IndexTerm>
682 <IndexTerm><Primary>binds, unused</Primary></IndexTerm>
683 Report any function definitions (and local bindings) which are unused.
684 For top-level functions, the warning is only given if the binding is
685 not exported.
686 </Para>
687 </ListItem>
688 </VarListEntry>
689 <VarListEntry>
690 <Term><Option>-fwarn-unused-matches</Option>:</Term>
691 <ListItem>
692 <Para>
693 <IndexTerm><Primary>-fwarn-unused-matches option</Primary></IndexTerm>
694 <IndexTerm><Primary>unused matches, warning</Primary></IndexTerm>
695 <IndexTerm><Primary>matches, unused</Primary></IndexTerm>
696 Report all unused variables which arise from pattern matches,
697 including patterns consisting of a single variable.  For instance <Literal>f x
698 y = []</Literal> would report <VarName>x</VarName> and <VarName>y</VarName> as unused.  To eliminate the warning,
699 all unused variables can be replaced with wildcards.
700 </Para>
701 </ListItem>
702 </VarListEntry>
703
704 <VarListEntry>
705 <Term><Option>-fwarn-duplicate-exports</Option>:</Term>
706 <ListItem>
707 <Para>
708 <IndexTerm><Primary>-fwarn-duplicate-exports option</Primary></IndexTerm>
709 <IndexTerm><Primary>duplicate exports, warning</Primary></IndexTerm>
710 <IndexTerm><Primary>export lists, duplicates</Primary></IndexTerm>
711 Have the compiler warn about duplicate entries in export lists. This
712 is useful information if you maintain large export lists, and want to
713 avoid the continued export of a definition after you've deleted (one)
714 mention of it in the export list.
715 </Para>
716
717 <Para>
718 This option is on by default.
719 </Para>
720 </ListItem>
721 </VarListEntry>
722
723 <VarListEntry>
724 <Term><Option>-fwarn-type-defaults</Option>:</Term>
725 <ListItem>
726 <Para>
727 <IndexTerm><Primary>-fwarn-type-defaults option</Primary></IndexTerm>
728 <IndexTerm><Primary>defaulting mechanism, warning</Primary></IndexTerm>
729 Have the compiler warn/inform you where in your source the Haskell
730 defaulting mechanism for numeric types kicks in. This is useful
731 information when converting code from a context that assumed one
732 default into one with another, e.g., the `default default' for Haskell
733 1.4 caused the otherwise unconstrained value <Constant>1</Constant> to be given
734 the type <Literal>Int</Literal>, whereas Haskell 98 defaults it to
735 <Literal>Integer</Literal>.  This may lead to differences in performance and
736 behaviour, hence the usefulness of being non-silent about this.
737 </Para>
738
739 <Para>
740 This warning is off by default.
741 </Para>
742 </ListItem>
743 </VarListEntry>
744
745 <VarListEntry>
746 <Term><Option>-fwarn-missing-signatures</Option>:</Term>
747 <ListItem>
748 <Para>
749 <IndexTerm><Primary>-fwarn-missing-signatures option</Primary></IndexTerm>
750 <IndexTerm><Primary>type signatures, missing</Primary></IndexTerm>
751 If you would like GHC to check that every top-level function/value has
752 a type signature, use the <Option>-fwarn-missing-signatures</Option> option.  This
753 option is off by default.
754 </Para>
755 </ListItem>
756 </VarListEntry>
757 </VariableList>
758 </Para>
759
760 <Para>
761 If you're feeling really paranoid, the <Option>-dcore-lint</Option>
762 option<IndexTerm><Primary>-dcore-lint option</Primary></IndexTerm> is a good choice.  It turns on
763 heavyweight intra-pass sanity-checking within GHC.  (It checks GHC's
764 sanity, not yours.)
765 </Para>
766
767 </Sect1>
768
769 <Sect1 id="separate-compilation">
770 <Title>Separate compilation
771 </Title>
772
773 <Para>
774 <IndexTerm><Primary>separate compilation</Primary></IndexTerm>
775 <IndexTerm><Primary>recompilation checker</Primary></IndexTerm>
776 <IndexTerm><Primary>make and recompilation</Primary></IndexTerm>
777 This section describes how GHC supports separate compilation.
778 </Para>
779
780 <Sect2 id="hi-files">
781 <Title>Interface files
782 </Title>
783
784 <Para>
785 <IndexTerm><Primary>interface files</Primary></IndexTerm>
786 <IndexTerm><Primary>.hi files</Primary></IndexTerm>
787 </Para>
788
789 <Para>
790 When GHC compiles a source file <Filename>F</Filename> which contains a module <Literal>A</Literal>, say,
791 it generates an object <Filename>F.o</Filename>, <Emphasis>and</Emphasis> a companion <Emphasis>interface
792 file</Emphasis> <Filename>A.hi</Filename>.  The interface file is not intended for human
793 consumption, as you'll see if you take a look at one.  It's merely
794 there to help the compiler compile other modules in the same program.
795 </Para>
796
797 <Para>
798 NOTE: Having the name of the interface file follow the module name and
799 not the file name, means that working with tools such as <Command>make</Command>
800 become harder. <Command>make</Command> implicitly assumes that any output files
801 produced by processing a translation unit will have file names that
802 can be derived from the file name of the translation unit.  For
803 instance, pattern rules becomes unusable.  For this reason, we
804 recommend you stick to using the same file name as the module name.
805 </Para>
806
807 <Para>
808 The interface file for <Literal>A</Literal> contains information needed by the compiler
809 when it compiles any module <Literal>B</Literal> that imports <Literal>A</Literal>, whether directly or
810 indirectly.  When compiling <Literal>B</Literal>, GHC will read <Filename>A.hi</Filename> to find the
811 details that it needs to know about things defined in <Literal>A</Literal>.
812 </Para>
813
814 <Para>
815 Furthermore, when compiling module <Literal>C</Literal> which imports <Literal>B</Literal>, GHC may
816 decide that it needs to know something about <Literal>A</Literal>&mdash;for example, <Literal>B</Literal>
817 might export a function that involves a type defined in <Literal>A</Literal>.  In this
818 case, GHC will go and read <Command>A.hi</Command> even though <Literal>C</Literal> does not explicitly
819 import <Literal>A</Literal> at all.
820 </Para>
821
822 <Para>
823 The interface file may contain all sorts of things that aren't
824 explicitly exported from <Literal>A</Literal> by the programmer.  For example, even
825 though a data type is exported abstractly, <Filename>A.hi</Filename> will contain the
826 full data type definition.  For small function definitions, <Filename>A.hi</Filename>
827 will contain the complete definition of the function.  For bigger
828 functions, <Filename>A.hi</Filename> will contain strictness information about the
829 function.  And so on.  GHC puts much more information into <Filename>.hi</Filename> files
830 when optimisation is turned on with the <Option>-O</Option> flag.  Without <Option>-O</Option> it
831 puts in just the minimum; with <Option>-O</Option> it lobs in a whole pile of stuff.
832 <IndexTerm><Primary>optimsation, effect on .hi files</Primary></IndexTerm>
833 </Para>
834
835 <Para>
836 <Filename>A.hi</Filename> should really be thought of as a compiler-readable version of
837 <Filename>A.o</Filename>.  If you use a <Filename>.hi</Filename> file that wasn't generated by the same
838 compilation run that generates the <Filename>.o</Filename> file the compiler may assume
839 all sorts of incorrect things about <Literal>A</Literal>, resulting in core dumps and
840 other unpleasant happenings.
841 </Para>
842
843 </Sect2>
844
845 <Sect2 id="options-finding-imports">
846 <Title>Finding interface files
847 </Title>
848
849 <Para>
850 <IndexTerm><Primary>interface files, finding them</Primary></IndexTerm>
851 <IndexTerm><Primary>finding interface files</Primary></IndexTerm>
852 </Para>
853
854 <Para>
855 In your program, you import a module <Literal>Foo</Literal> by saying
856 <Literal>import Foo</Literal>.  GHC goes looking for an interface file, <Filename>Foo.hi</Filename>.
857 It has a builtin list of directories (notably including <Filename>.</Filename>) where
858 it looks.
859 </Para>
860
861 <Para>
862 <VariableList>
863
864 <VarListEntry>
865 <Term><Option>-i&lt;dirs&gt;</Option></Term>
866 <ListItem>
867 <Para>
868 <IndexTerm><Primary>-i&lt;dirs&gt; option</Primary></IndexTerm>This flag
869 prepends a colon-separated list of <Filename>dirs</Filename> to the &ldquo;import
870 directories&rdquo; list.
871 See also <XRef LinkEnd="recomp"> for the significance of using
872 relative and absolute pathnames in the <Option>-i</Option> list.
873 </Para>
874 </ListItem>
875 </VarListEntry>
876
877 <VarListEntry>
878 <Term><Option>-i</Option></Term>
879 <ListItem>
880 <Para>
881 resets the &ldquo;import directories&rdquo; list back to nothing.
882 </Para>
883 </ListItem>
884 </VarListEntry>
885
886 <VarListEntry>
887 <Term><Option>-fno-implicit-prelude</Option></Term>
888 <ListItem>
889 <Para>
890 <IndexTerm><Primary>-fno-implicit-prelude option</Primary></IndexTerm>
891 GHC normally imports <Filename>Prelude.hi</Filename> files for you.  If you'd rather it
892 didn't, then give it a <Option>-fno-implicit-prelude</Option> option.  
893 The idea is that you can then import a Prelude of your own.  (But don't call it <Literal>Prelude</Literal>;
894 the Haskell module namespace is flat, and you must not conflict with any Prelude module.)
895 </Para>
896 <Para>
897 Even though you have not imported the Prelude, all the built-in syntax still refers to 
898 the built-in Haskell Prelude types and values, as specified by the Haskell Report.  
899 For example, the type <Literal>[Int]</Literal>
900 still means <Literal>Prelude.[] Int</Literal>; tuples continue to refer to the standard Prelude
901 tuples; the translation for list comprehensions continues to use <Literal>Prelude.map</Literal> etc.
902 </Para>
903 <Para> With one group of exceptions!  You may want to define your own numeric class hierarchy.
904 It completely defeats that purpose if the literal "1" means "<Literal>Prelude.fromInteger 1</Literal>",
905 which is what the Haskell Report specifies.  So the <Option>-fno-implicit-prelude</Option> flag causes
906 the following pieces of built-in syntax to refer to whatever is in scope, not the Prelude versions:
907 <ItemizedList>
908 <ListItem> 
909 Integer and fractional literals mean "<Literal>fromInteger 1</Literal>" and "<Literal>fromRational 3.2</Literal>",
910 not the Prelude-qualified versions; both in expressions and in patterns.
911 </ListItem>
912 <ListItem>
913 Negation (e.g. "<Literal>- (f x)</Literal>") means "<Literal>negate (f x)</Literal>" (not <Literal>Prelude.negate</Literal>).
914 </ListItem>
915 <ListItem>
916 In an n+k pattern, the standard Prelude <Literal>OrdK/Literal> class is used for comparison, but the 
917 necessary subtraction uses 
918 whatever "<Literal>(-)</Literal>" is in scope (not "<Literal>Prelude.(-)</Literal>").
919 </ListItem>
920 </ItemizedList>
921 </Para>
922 </ListItem>
923 </VarListEntry>
924
925 <VarListEntry>
926 <Term><Option>-I&lt;dir&gt;</Option></Term>
927 <ListItem>
928 <Para>
929 <IndexTerm><Primary>-I&lt;dir&gt; option</Primary></IndexTerm>
930 Once a Haskell module has been compiled to C (<Filename>.hc</Filename> file), you may
931 wish to specify where GHC tells the C compiler to look for <Filename>.h</Filename> files.
932 (Or, if you are using the <Option>-cpp</Option> option<IndexTerm><Primary>-cpp option</Primary></IndexTerm>, where
933 it tells the C pre-processor to look&hellip;)  For this purpose, use a <Option>-I</Option>
934 option in the usual C-ish way.
935 </Para>
936 </ListItem>
937 </VarListEntry>
938
939 </VariableList>
940 </Para>
941
942 </Sect2>
943
944 <Sect2 id="hi-options">
945 <Title>Other options related to interface files
946 </Title>
947
948 <Para>
949 <IndexTerm><Primary>interface files, options</Primary></IndexTerm>
950 The interface output may be directed to another file
951 <Filename>bar2/Wurble.iface</Filename> with the option <Option>-ohi bar2/Wurble.iface</Option><IndexTerm><Primary>-ohi
952 &lt;file&gt; option</Primary></IndexTerm> (not recommended).
953 </Para>
954
955 <Para>
956 To avoid generating an interface file at all, use a <Option>-nohi</Option>
957 option.<IndexTerm><Primary>-nohi option</Primary></IndexTerm>
958 </Para>
959
960 <Para>
961 The compiler does not overwrite an existing <Filename>.hi</Filename> interface file if
962 the new one is byte-for-byte the same as the old one; this is friendly
963 to <Command>make</Command>.  When an interface does change, it is often enlightening to
964 be informed.  The <Option>-hi-diffs</Option><IndexTerm><Primary>-hi-diffs option</Primary></IndexTerm> option will
965 make GHC run <Command>diff</Command> on the old and new <Filename>.hi</Filename> files. You can also
966 record the difference in the interface file itself, the
967 <Option>-keep-hi-diffs</Option><IndexTerm><Primary>-keep-hi-diffs</Primary></IndexTerm> option takes care of that.
968 </Para>
969
970 <Para>
971 The <Filename>.hi</Filename> files from GHC contain &ldquo;usage&rdquo; information which changes
972 often and uninterestingly.  If you really want to see these changes
973 reported, you need to use the
974 <Option>-hi-diffs-with-usages</Option><IndexTerm><Primary>-hi-diffs-with-usages option</Primary></IndexTerm>
975 option.
976 </Para>
977
978 <Para>
979 Interface files are normally jammed full of compiler-produced
980 <Emphasis>pragmas</Emphasis>, which record arities, strictness info, etc.  If you
981 think these pragmas are messing you up (or you are doing some kind of
982 weird experiment), you can tell GHC to ignore them with the
983 <Option>-fignore-interface-pragmas</Option><IndexTerm><Primary>-fignore-interface-pragmas
984 option</Primary></IndexTerm> option.
985 </Para>
986
987 <Para>
988 When compiling without optimisations on, the compiler is extra-careful
989 about not slurping in data constructors and instance declarations that
990 it will not need. If you believe it is getting it wrong and not
991 importing stuff which you think it should, this optimisation can be
992 turned off with <Option>-fno-prune-tydecls</Option> and <Option>-fno-prune-instdecls</Option>.
993 <IndexTerm><Primary>-fno-prune-tydecls option</Primary></IndexTerm><IndexTerm><Primary>-fno-prune-instdecls
994 option</Primary></IndexTerm>
995 </Para>
996
997 <Para>
998 See also <XRef LinkEnd="options-linker">, which describes how the linker finds standard
999 Haskell libraries.
1000 </Para>
1001
1002 </Sect2>
1003
1004 <Sect2 id="recomp">
1005 <Title>The recompilation checker
1006 </Title>
1007
1008 <IndexTerm><Primary>recompilation checker</Primary></IndexTerm>
1009
1010 <Para>
1011 <variablelist>
1012 <VarListEntry>
1013 <Term><Option>-recomp</Option></Term>
1014 <IndexTerm><Primary><option>-recomp</option> option</Primary></IndexTerm>
1015 <ListItem>
1016 <Para>
1017 (On by default) Turn on recompilation checking.  This will stop
1018 compilation early, leaving an existing <filename>.o</filename> file in
1019 place, if it can be determined that the module does not need to be
1020 recompiled.
1021 </Para>
1022 </ListItem>
1023 </VarListEntry>
1024 <VarListEntry>
1025 <Term><Option>-no-recomp</Option></Term>
1026 <IndexTerm><Primary><option>-recomp</option> option</Primary></IndexTerm>
1027 <ListItem>
1028 <Para>
1029 Turn off recompilation checking.
1030 </Para>
1031 </ListItem>
1032 </VarListEntry>
1033 </VariableList>
1034 </Para>
1035
1036 <Para>
1037 In the olden days, GHC compared the newly-generated
1038 <Filename>.hi</Filename> file with the previous version; if they were
1039 identical, it left the old one alone and didn't change its
1040 modification date.  In consequence, importers of a module with an
1041 unchanged output <Filename>.hi</Filename> file were not recompiled.
1042 </Para>
1043
1044 <Para>
1045 This doesn't work any more.  In our earlier example, module
1046 <Literal>C</Literal> does not import module <Literal>A</Literal>
1047 directly, yet changes to <Filename>A.hi</Filename> should force a
1048 recompilation of <Literal>C</Literal>.  And some changes to
1049 <Literal>A</Literal> (changing the definition of a function that
1050 appears in an inlining of a function exported by <Literal>B</Literal>,
1051 say) may conceivably not change <Filename>B.hi</Filename> one jot.  So
1052 now&hellip;
1053 </Para>
1054
1055 <Para>
1056 GHC keeps a version number on each interface file, and on each type
1057 signature within the interface file.  It also keeps in every interface
1058 file a list of the version numbers of everything it used when it last
1059 compiled the file.  If the source file's modification date is earlier
1060 than the <Filename>.o</Filename> file's date (i.e. the source hasn't
1061 changed since the file was last compiled), and the
1062 <option>-recomp</option> is given on the command line, GHC will be
1063 clever.  It compares the version numbers on the things it needs this
1064 time with the version numbers on the things it needed last time
1065 (gleaned from the interface file of the module being compiled); if
1066 they are all the same it stops compiling rather early in the process
1067 saying &ldquo;Compilation IS NOT required&rdquo;.  What a beautiful
1068 sight!
1069 </Para>
1070
1071 <Para>
1072 Patrick Sansom had a workshop paper about how all this is done (though
1073 the details have changed quite a bit). <ULink URL="mailto:sansom@dcs.gla.ac.uk">Ask him</ULink> if you want a copy.
1074 </Para>
1075
1076 </Sect2>
1077
1078
1079 <Sect2 id="using-make">
1080 <Title>Using <Command>make</Command>
1081 </Title>
1082
1083 <Para>
1084 <IndexTerm><Primary><literal>make</literal></Primary></IndexTerm>
1085 </Para>
1086
1087 <Para>
1088 It is reasonably straightforward to set up a <Filename>Makefile</Filename> to use with GHC, assuming you name your source files the same as your modules.
1089 Thus:
1090 </Para>
1091
1092 <Para>
1093
1094 <ProgramListing>
1095 HC      = ghc
1096 HC_OPTS = -cpp $(EXTRA_HC_OPTS)
1097
1098 SRCS = Main.lhs Foo.lhs Bar.lhs
1099 OBJS = Main.o   Foo.o   Bar.o
1100
1101 .SUFFIXES : .o .hs .hi .lhs .hc .s
1102
1103 cool_pgm : $(OBJS)
1104         rm $@
1105         $(HC) -o $@ $(HC_OPTS) $(OBJS)
1106
1107 # Standard suffix rules
1108 .o.hi:
1109         @:
1110
1111 .lhs.o:
1112         $(HC) -c $&#60; $(HC_OPTS)
1113
1114 .hs.o:
1115         $(HC) -c $&#60; $(HC_OPTS)
1116
1117 # Inter-module dependencies
1118 Foo.o Foo.hc Foo.s    : Baz.hi          # Foo imports Baz
1119 Main.o Main.hc Main.s : Foo.hi Baz.hi   # Main imports Foo and Baz
1120 </ProgramListing>
1121
1122 </Para>
1123
1124 <Para>
1125 (Sophisticated <Command>make</Command> variants may achieve some of the above more
1126 elegantly.  Notably, <Command>gmake</Command>'s pattern rules let you write the more
1127 comprehensible:
1128 </Para>
1129
1130 <Para>
1131
1132 <ProgramListing>
1133 %.o : %.lhs
1134         $(HC) -c $&#60; $(HC_OPTS)
1135 </ProgramListing>
1136
1137 </Para>
1138
1139 <Para>
1140 What we've shown should work with any <Command>make</Command>.)
1141 </Para>
1142
1143 <Para>
1144 Note the cheesy <Literal>.o.hi</Literal> rule: It records the dependency of the
1145 interface (<Filename>.hi</Filename>) file on the source.  The rule says a <Filename>.hi</Filename> file can
1146 be made from a <Filename>.o</Filename> file by doing&hellip;nothing.  Which is true.
1147 </Para>
1148
1149 <Para>
1150 Note the inter-module dependencies at the end of the Makefile, which
1151 take the form
1152 </Para>
1153
1154 <Para>
1155
1156 <ProgramListing>
1157 Foo.o Foo.hc Foo.s    : Baz.hi          # Foo imports Baz
1158 </ProgramListing>
1159
1160 </Para>
1161
1162 <Para>
1163 They tell <Command>make</Command> that if any of <Literal>Foo.o</Literal>, <Literal>Foo.hc</Literal> or <Literal>Foo.s</Literal> have an
1164 earlier modification date than <Literal>Baz.hi</Literal>, then the out-of-date file
1165 must be brought up to date.  To bring it up to date, <Literal>make</Literal> looks for
1166 a rule to do so; one of the preceding suffix rules does the job
1167 nicely.
1168 </Para>
1169
1170     </sect2>
1171
1172     <sect2 id="sec-makefile-dependencies">
1173       <title>Dependency generation</title>
1174       <indexterm><primary>dependencies in Makefiles</primary></indexterm>
1175       <indexterm><primary>Makefile dependencies</primary></indexterm>
1176
1177       <para>Putting inter-dependencies of the form <Literal>Foo.o :
1178       Bar.hi</Literal> into your <Filename>Makefile</Filename> by hand
1179       is rather error-prone.  Don't worry, GHC has support for
1180       automatically generating the required dependencies.  Add the
1181       following to your <Filename>Makefile</Filename>:</para>
1182
1183 <ProgramListing>
1184 depend :
1185         ghc -M $(HC_OPTS) $(SRCS)
1186 </ProgramListing>
1187
1188       <para>Now, before you start compiling, and any time you change
1189       the <Literal>imports</Literal> in your program, do <Command>make
1190       depend</Command> before you do <Command>make
1191       cool&lowbar;pgm</Command>.  <Command>ghc -M</Command> will append
1192       the needed dependencies to your
1193       <Filename>Makefile</Filename>.</Para>
1194
1195       <para>In general, if module <Literal>A</Literal> contains the
1196       line
1197
1198 <programlisting>
1199 import B ...blah...
1200 </programlisting>
1201
1202        then <command>ghc -M</command> will generate a dependency
1203        line of the form:
1204
1205 <programlisting>
1206 A.o : B.hi
1207 </programlisting>
1208
1209        If module <literal>A</literal> contains the line 
1210
1211 <programlisting>
1212 import {-# SOURCE #-} B ...blah...
1213 </programlisting>
1214
1215        then <command>ghc -M</command> will generate a dependency
1216        line of the form:
1217
1218 <programlisting>
1219 A.o : B.hi-boot
1220 </programlisting>
1221
1222        (See <xref linkend="hi-files"> for details of interface files.)
1223        If <literal>A</literal> imports multiple modules, then there
1224        will be multiple lines with <filename>A.o</filename> as the
1225        target.</para>
1226
1227       <para>By default, <Command>ghc -M</Command> generates all the
1228       dependencies, and then concatenates them onto the end of
1229       <Filename>makefile</Filename> (or <Filename>Makefile</Filename>
1230       if <Filename>makefile</Filename> doesn't exist) bracketed by the
1231       lines "<Literal>&num; DO NOT DELETE: Beginning of Haskell
1232       dependencies</Literal>" and "<Literal>&num; DO NOT DELETE: End
1233       of Haskell dependencies</Literal>".  If these lines already
1234       exist in the <Filename>makefile</Filename>, then the old
1235       dependencies are deleted first.</para>
1236
1237       <para>Internally, GHC uses a script to generate the
1238       dependencies, called <command>mkdependHS</command>.  This script
1239       has some options of its own, which you might find useful.
1240       Options can be passed directly to <command>mkdependHS</command>
1241       with GHC's <literal>-optdep</literal> option.  For example, to
1242       generate the dependencies into a file called
1243       <literal>.depend</literal> instead of
1244       <literal>Makefile</literal>:</para>
1245
1246 <screen>
1247 ghc -M -optdep-f optdep.depend ...
1248 </screen>
1249       
1250       <para>The full list of options accepted by
1251       <command>mkdependHS</command> is:</para>
1252
1253       <variablelist>
1254
1255         <varlistentry>
1256           <term><option>-w</option></term>
1257           <listitem>
1258             <para>Turn off warnings about interface file shadowing.</para>
1259           </listitem>
1260         </varlistentry>
1261
1262         <varlistentry>
1263           <term><option>-f blah</option></term>
1264           <listitem>
1265             <para>Use <Filename>blah</Filename> as the makefile,
1266             rather than <Filename>makefile</Filename> or
1267             <Filename>Makefile</Filename>.  If
1268             <Filename>blah</Filename> doesn't exist,
1269             <Command>mkdependHS</Command> creates it.  We often use
1270             <Option>-f .depend</Option> to put the dependencies in
1271             <Filename>.depend</Filename> and then
1272             <Command>include</Command> the file
1273             <Filename>.depend</Filename> into
1274             <Filename>Makefile</Filename>.</para>
1275           </listitem>
1276         </varlistentry>
1277
1278         <varlistentry>
1279           <term><option>-o &lt;osuf&gt;</option></term>
1280           <listitem>
1281             <para>Use <Filename>.&lt;osuf&gt;</Filename> as the
1282             "target file" suffix ( default: <Literal>o</Literal>).
1283             Multiple <Option>-o</Option> flags are permitted (GHC2.05
1284             onwards).  Thus "<Option>-o hc -o o</Option>" will
1285             generate dependencies for <Filename>.hc</Filename> and
1286             <Filename>.o</Filename> files.</para>
1287           </listitem>
1288         </varlistentry>
1289
1290         <varlistentry>
1291           <term><option>-s &lt;suf&gt;</option></term>
1292           <listitem>
1293             <para>Make extra dependencies that declare that files with
1294             suffix
1295             <Filename>.&lt;suf&gt;&lowbar;&lt;osuf&gt;</Filename>
1296             depend on interface files with suffix
1297             <Filename>.&lt;suf&gt;&lowbar;hi</Filename>, or (for
1298             <Literal>&lcub;-&num; SOURCE &num;-&rcub;</Literal>
1299             imports) on <Filename>.hi-boot</Filename>.  Multiple
1300             <Option>-s</Option> flags are permitted.  For example,
1301             <Option>-o hc -s a -s b</Option> will make dependencies
1302             for <Filename>.hc</Filename> on <Filename>.hi</Filename>,
1303             <Filename>.a&lowbar;hc</Filename> on
1304             <Filename>.a&lowbar;hi</Filename>, and
1305             <Filename>.b&lowbar;hc</Filename> on
1306             <Filename>.b&lowbar;hi</Filename>.  (Useful in conjunction
1307             with NoFib "ways".)</para>
1308           </listitem>
1309         </varlistentry>
1310
1311         <varlistentry>
1312           <term><option>--exclude-module=&lt;file&gt;</option></term>
1313           <listitem>
1314             <para>Regard <Filename>&lt;file&gt;</Filename> as
1315             "stable"; i.e., exclude it from having dependencies on
1316             it.</para>
1317           </listitem>
1318         </varlistentry>
1319
1320         <varlistentry>
1321           <term><option>-x</option></term>
1322           <listitem>
1323             <para>same as <option>--exclude-module</option></para>
1324           </listitem>
1325         </varlistentry>
1326
1327         <varlistentry>
1328           <term><option>--exclude-directory=&lt;dirs&gt;</option></term>
1329           <listitem>
1330             <para>Regard the colon-separated list of directories
1331             <Filename>&lt;dirs&gt;</Filename> as containing stable,
1332             don't generate any dependencies on modules therein.</para>
1333           </listitem>
1334         </varlistentry>
1335
1336         <varlistentry>
1337           <term><option>-xdirs</option></term>
1338           <listitem>
1339             <para>same as <Option>--exclude-directory</Option>.</para>
1340           </listitem>
1341         </varlistentry>
1342
1343         <varlistentry>
1344           <term><option>--include-module=&lt;file&gt;</option></term>
1345           <listitem>
1346             <para>Regard <Filename>&lt;file&gt;</Filename> as not
1347             "stable"; i.e., generate dependencies on it (if any). This
1348             option is normally used in conjunction with the
1349             <Option>--exclude-directory</Option> option.</para>
1350           </listitem>
1351         </varlistentry>
1352
1353         <varlistentry>
1354           <term><option>--include-prelude</option></term>
1355           <listitem>
1356             <para>Regard prelude libraries as unstable, i.e., generate
1357             dependencies on the prelude modules used (including
1358             <Literal>Prelude</Literal>).  This option is normally only
1359             used by the various system libraries. If a
1360             <Option>-package</Option> option is used, dependencies will
1361             also be generated on the library's interfaces.</para>
1362           </listitem>
1363         </varlistentry>
1364       </variablelist>
1365
1366 </Sect2>
1367
1368 <Sect2 id="mutual-recursion">
1369 <Title>How to compile mutually recursive modules
1370 </Title>
1371
1372 <Para>
1373 <IndexTerm><Primary>module system, recursion</Primary></IndexTerm>
1374 <IndexTerm><Primary>recursion, between modules</Primary></IndexTerm>
1375 </Para>
1376
1377 <Para>
1378 Currently, the compiler does not have proper support for dealing with
1379 mutually recursive modules:
1380 </Para>
1381
1382 <Para>
1383
1384 <ProgramListing>
1385 module A where
1386
1387 import B
1388
1389 newtype TA = MkTA Int
1390
1391 f :: TB -&#62; TA
1392 f (MkTB x) = MkTA x
1393 --------
1394 module B where
1395
1396 import A
1397
1398 data TB = MkTB !Int
1399
1400 g :: TA -&#62; TB
1401 g (MkTA x) = MkTB x
1402 </ProgramListing>
1403
1404 </Para>
1405
1406 <Para>
1407 When compiling either module A and B, the compiler will try (in vain)
1408 to look for the interface file of the other. So, to get mutually
1409 recursive modules off the ground, you need to hand write an interface
1410 file for A or B, so as to break the loop.  These hand-written
1411 interface files are called <Literal>hi-boot</Literal> files, and are placed in a file
1412 called <Filename>&lt;module&gt;.hi-boot</Filename>.  To import from an <Literal>hi-boot</Literal> file instead
1413 of the standard <Filename>.hi</Filename> file, use the following syntax in the importing module:
1414 <IndexTerm><Primary>hi-boot files</Primary></IndexTerm>
1415 <IndexTerm><Primary>importing, hi-boot files</Primary></IndexTerm>
1416 </Para>
1417
1418 <Para>
1419
1420 <ProgramListing>
1421 import {-# SOURCE #-} A
1422 </ProgramListing>
1423
1424 </Para>
1425
1426 <Para>
1427 The hand-written interface need only contain the bare minimum of
1428 information needed to get the bootstrapping process started.  For
1429 example, it doesn't need to contain declarations for <Emphasis>everything</Emphasis>
1430 that module <Literal>A</Literal> exports, only the things required by the module that
1431 imports <Literal>A</Literal> recursively.
1432 </Para>
1433
1434 <Para>
1435 For the example at hand, the boot interface file for A would look like
1436 the following:
1437 </Para>
1438
1439 <Para>
1440
1441 <ProgramListing>
1442 __interface A 1 404 where
1443 __export A TA{MkTA} ;
1444 1 newtype TA = MkTA PrelBase.Int ;
1445 </ProgramListing>
1446
1447 </Para>
1448
1449 <Para>
1450 The syntax is essentially the same as a normal <Filename>.hi</Filename> file
1451 (unfortunately), but you can usually tailor an existing <Filename>.hi</Filename> file to
1452 make a <Filename>.hi-boot</Filename> file.
1453 </Para>
1454
1455 <Para>
1456 Notice that we only put the declaration for the newtype <Literal>TA</Literal> in the
1457 <Literal>hi-boot</Literal> file, not the signature for <Function>f</Function>, since <Function>f</Function> isn't used by
1458 <Literal>B</Literal>.
1459 </Para>
1460
1461 <Para>
1462 The number &ldquo;1&rdquo; after &ldquo;&lowbar;&lowbar;interface A&rdquo; gives the version number of module A;
1463 it is incremented whenever anything in A's interface file changes.  The &ldquo;404&rdquo; is
1464 the version number of the interface file <Emphasis>syntax</Emphasis>; we change it when
1465 we change the syntax of interface files so that you get a better error message when
1466 you try to read an old-format file with a new-format compiler.
1467 </Para>
1468
1469 <Para>
1470 The number &ldquo;1&rdquo; at the beginning of a declaration is the <Emphasis>version
1471 number</Emphasis> of that declaration: for the purposes of <Filename>.hi-boot</Filename> files
1472 these can all be set to 1.  All names must be fully qualified with the
1473 <Emphasis>original</Emphasis> module that an object comes from: for example, the
1474 reference to <Literal>Int</Literal> in the interface for <Literal>A</Literal> comes from <Literal>PrelBase</Literal>,
1475 which is a module internal to GHC's prelude.  It's a pain, but that's
1476 the way it is.
1477 </Para>
1478
1479 <Para>
1480 If you want an hi-boot file to export a data type, but you don't want to give its constructors
1481 (because the constructors aren't used by the SOURCE-importing module), you can write simply:
1482 </Para>
1483
1484 <Para>
1485
1486 <ProgramListing>
1487 __interface A 1 404 where
1488 __export A TA;
1489 1 data TA
1490 </ProgramListing>
1491
1492 </Para>
1493
1494 <Para>
1495 (You must write all the type parameters, but leave out the '=' and everything that follows it.)
1496 </Para>
1497
1498 <Para>
1499 <Emphasis>Note:</Emphasis> This is all a temporary solution, a version of the
1500 compiler that handles mutually recursive modules properly without the manual
1501 construction of interface files, is (allegedly) in the works.
1502 </Para>
1503
1504 </Sect2>
1505
1506 </Sect1>
1507
1508   <sect1 id="packages">
1509     <title>Packages</title>
1510     <indexterm><primary>packages</primary></indexterm>
1511
1512     <para>Packages are collections of libraries, conveniently grouped
1513     together as a single entity.  The package system is flexible: a
1514     package may consist of Haskell code, foreign language code (eg. C
1515     libraries), or a mixture of the two.  A package is a good way to
1516     group together related Haskell modules, and is essential if you
1517     intend to make the modules into a Windows DLL (see below).</para>
1518
1519     <para>Because packages can contain both Haskell and C libraries, they
1520     are also a good way to provide convenient access to a Haskell
1521     layer over a C library.</para>
1522
1523     <para>GHC comes with several packages (see <xref
1524     linkend="book-hslibs">), and packages can be added/removed from an
1525     existing GHC installation.</para>
1526
1527     <sect2 id="listing-packages">
1528       <title>Listing the available packages</title>
1529       <indexterm><primary>packages</primary>
1530         <secondary>listing</secondary></indexterm>
1531
1532       <para>To see what packages are currently installed, use the
1533       <literal>--list-packages</literal> option:</para>
1534       <indexterm><primary><literal>--list-packages</literal></primary>
1535       </indexterm>
1536
1537 <screen>
1538   $ ghc --list-packages
1539   gmp, rts, std, lang, concurrent, data, net, posix, text, util
1540 </screen>
1541
1542       <para>Note that your GHC installation might have a slightly
1543       different set of packages installed.</para>
1544
1545       <para>The <literal>gmp</literal> and <literal>rts</literal>
1546       packages are always present, and represent the multi-precision
1547       integer and runtime system libraries respectively.  The
1548       <literal>std</literal> package contains the Haskell prelude.
1549       The rest of the packages are optional libraries.</para>
1550
1551     </sect2>
1552
1553     <sect2 id="using-packages">
1554       <title>Using a package</title>
1555       <indexterm><primary>packages</primary>
1556         <secondary>using</secondary></indexterm>
1557       
1558       <para>To use a package, add the <literal>-package</literal> flag
1559       to the command line:</para>
1560
1561       <variablelist>
1562         <varlistentry>
1563           <term><option>-package &lt;lib&gt;</option></term>
1564           <indexterm><primary>-package &lt;lib&gt; option</primary></indexterm>
1565           <listitem>
1566             <para>This option brings into scope all the modules from
1567             package <literal>&lt;lib&gt;</literal> (they still have to
1568             be imported in your Haskell source, however).  It also
1569             causes the relevant libraries to be linked when linking is
1570             being done.</para>
1571           </listitem>
1572         </varlistentry>
1573       </variablelist>
1574
1575       <para>Some packages depend on other packages, for example the
1576       <literal>text</literal> package makes use of some of the modules
1577       in the <literal>lang</literal> package.  The package system
1578       takes care of all these dependencies, so that when you say
1579       <literal>-package text</literal> on the command line, you
1580       automatically get <literal>-package lang</literal> too.</para>
1581     </sect2>
1582
1583     <sect2 id="building-packages">
1584       <title>Building a package from Haskell source</title>
1585       <indexterm><primary>packages</primary>
1586         <secondary>building</secondary></indexterm>
1587
1588       <para>It takes some special considerations to build a new
1589       package:</para>
1590
1591       <itemizedlist>
1592         <listitem>
1593           <para>A package may contain several Haskell modules. A
1594           package may span many directories, or many packages may
1595           exist in a single directory. Packages may not be mutually
1596           recursive.</para>
1597         </listitem>
1598
1599         <listitem>
1600           <para>A package has a name
1601           (e.g. <filename>std</filename>)</para>
1602         </listitem>
1603
1604         <listitem>
1605           <para>The Haskell code in a package may be built into one or
1606           more Unix libraries (e.g. <Filename>libHSfoo.a</Filename>),
1607           or a single DLL on Windows
1608           (e.g. <Filename>HSfoo.dll</Filename>).  The restriction to a
1609           single DLL on Windows is that the package system is used to
1610           tell the compiler when it should make an inter-DLL call
1611           rather than an intra-DLL call (inter-DLL calls require an
1612           extra indirection).</para>
1613         </listitem>
1614
1615         <listitem>
1616           <para>GHC does not maintain detailed cross-package
1617           dependency information.  It does remember which modules in
1618           other packages the current module depends on, but not which
1619           things within those imported things.</para>
1620         </listitem>
1621       </itemizedlist>
1622
1623       <para>To compile a module which is to be part of a new package,
1624       use the <literal>-package-name</literal> option:</para>
1625
1626       <variablelist>
1627         <varlistentry>
1628           <term><option>-package-name &lt;foo&gt;</option></term>
1629           <indexterm><primary><literal>-package-name</literal></primary>
1630             <secondary>option</secondary></indexterm>
1631           <listitem>
1632             <para>This option is added to the command line when
1633             compiling a module that is destined to be part of package
1634             <literal>foo</literal>.  If this flag is omitted then the
1635             default package <literal>Main</literal> is assumed.</para>
1636           </listitem>
1637         </varlistentry>
1638       </variablelist>
1639
1640       <para>Failure to use the <literal>-package-name</literal> option
1641       when compiling a package will result in disaster on Windows, but
1642       is relatively harmless on Unix at the moment (it will just cause
1643       a few extra dependencies in some interface files).  However,
1644       bear in mind that we might add support for Unix shared libraries
1645       at some point in the future.</para>
1646
1647       <para>It is worth noting that on Windows, because each package
1648       is built as a DLL, and a reference to a DLL costs an extra
1649       indirection, intra-package references are cheaper than
1650       inter-package references. Of course, this applies to the
1651       <Filename>Main</Filename> package as well.</para>
1652
1653     </sect2>
1654     <sect2 id="package-management">
1655       <title>Package management</title>
1656       <indexterm><primary>packages</primary>
1657         <secondary>management</secondary></indexterm>
1658       
1659       <para>GHC uses a package configuration file, called
1660       <literal>packages.conf</literal>, which can be found in your GHC
1661       install directory.  This file isn't intended to be edited
1662       directly, instead GHC provides options for adding & removing
1663       packages:</para>
1664
1665       <variablelist>
1666         <varlistentry>
1667           <term><option>--add-package</option></term>
1668           <indexterm><primary><literal>--add-package</literal></primary>
1669               <secondary>option</secondary></indexterm>
1670           <listitem>
1671             <para>Reads a package specification (see below) on stdin,
1672             and adds it to the database of installed packages.  The
1673             package specification must be a package that isn't already
1674             installed.</para>
1675           </listitem>
1676         </varlistentry>
1677
1678         <varlistentry>
1679           <term><option>--delete-package &lt;foo&gt;</option></term>
1680           <indexterm><primary><literal>--delete-package</literal></primary>
1681               <secondary>option</secondary></indexterm>
1682           <listitem>
1683             <para>Removes the specified package from the installed
1684             configuration.</para>
1685           </listitem>
1686         </varlistentry>
1687       </variablelist>
1688
1689       <para>In both cases, the old package configuration file is saved
1690       in <literal>packages.conf.old</literal> in your GHC install
1691       directory, so in an emergency you can always copy this file into
1692       <literal>package.conf</literal> to restore the old
1693       settings.</para>
1694
1695       <para>A package specification looks like this:</para>
1696
1697 <screen>
1698  ("mypkg",
1699   "4.08",
1700   Package
1701        {
1702         import_dirs     =  ["/usr/local/lib/imports/mypkg"],
1703         library_dirs    =  ["/usr/local/lib"],
1704         hs_libraries    =  ["HSmypkg" ],
1705         extra_libraries =  ["HSmypkg_cbits"],
1706         include_dirs    =  [],
1707         c_includes      =  ["HsMyPkg.h"],
1708         package_deps    =  ["text", "data"],
1709         extra_ghc_opts  =  [],
1710         extra_cc_opts   =  [],
1711         extra_ld_opts   =  ["-lmy_clib"]
1712        }
1713  )
1714 </screen>
1715
1716       <para>The first line is the name of the package, for use with
1717       the <literal>-package</literal> flag and as listed in the
1718       <literal>--list-packages</literal> list.  The second line is the
1719       version of GHC that was used to compile any Haskell code in this
1720       package (GHC will refuse to add the package if its version
1721       number differs from this one).  The rest of the components of
1722       the package specification may be specified in any order, and
1723       are:</para>
1724
1725       <variablelist>
1726         <varlistentry>
1727           <term><literal>import_dirs</literal></term>
1728           <indexterm><primary><literal>import_dirs</literal></primary>
1729             <secondary>package specification</secondary></indexterm>
1730           <listitem>
1731             <para>A list of directories containing interface files
1732             (<literal>.hi</literal> files) for this package.</para>
1733           </listitem>
1734         </varlistentry>
1735
1736         <varlistentry>
1737           <term><literal>library_dirs</literal></term>
1738           <indexterm><primary><literal>library_dirs</literal></primary>
1739             <secondary>package specification</secondary></indexterm>
1740           <listitem>
1741             <para>A list of directories containing libraries for this
1742             package.</para>
1743           </listitem>
1744         </varlistentry>
1745
1746         <varlistentry>
1747           <term><literal>hs_libraries</literal></term>
1748           <indexterm><primary><literal>hs_libraries</literal></primary>
1749             <secondary>package specification</secondary></indexterm>
1750           <listitem>
1751             <para>A list of libraries containing Haskell code for this
1752             package, with the <literal>.a</literal> or
1753             <literal>.dll</literal> suffix omitted.  On Unix, the
1754             <literal>lib</literal> prefix is also omitted.</para>
1755           </listitem>
1756         </varlistentry>
1757
1758         <varlistentry>
1759           <term><literal>extra_libraries</literal></term>
1760           <indexterm><primary><literal>extra_libraries</literal></primary>
1761             <secondary>package specification</secondary></indexterm>
1762           <listitem>
1763             <para>A list of extra libraries for this package.  The
1764             difference between <literal>hs_libraries</literal> and
1765             <literal>extra_libraries</literal> is that
1766             <literal>hs_libraries</literal> normally have several
1767             versions, to support profiling, parallel and other build
1768             options.  The various versions are given different
1769             suffixes to distinguish them, for example the profiling
1770             version of the standard prelude library is named
1771             <filename>libHSstd_p.a</filename>, with the
1772             <literal>_p</literal> indicating that this is a profiling
1773             version.  The suffix is added automatically by GHC for
1774             <literal>hs_libraries</literal> only, no suffix is added
1775             for libraries in
1776             <literal>extra_libraries</literal>.</para>
1777
1778             <para>Also, <literal>extra_libraries</literal> are placed
1779             on the linker command line before the
1780             <literal>hs_libraries</literal> for the same package.  If
1781             your package has dependencies in the other direction, you
1782             might need to make two separate packages.</para>
1783           </listitem>
1784         </varlistentry>
1785
1786         <varlistentry>
1787           <term><literal>include_dirs</literal></term>
1788           <indexterm><primary><literal>include_dirs</literal></primary>
1789             <secondary>package specification</secondary></indexterm>
1790           <listitem>
1791             <para>A list of directories containing C includes for this
1792             package (maybe the empty list).</para>
1793           </listitem>
1794         </varlistentry>
1795
1796         <varlistentry>
1797           <term><literal>c_includes</literal></term>
1798           <indexterm><primary><literal>c_includes</literal></primary>
1799             <secondary>package specification</secondary></indexterm>
1800           <listitem>
1801             <para>A list of files to include for via-C compilations
1802             using this package.  Typically this include file will
1803             contain function prototypes for any C functions used in
1804             the package, in case they end up being called as a result
1805             of Haskell functions from the package being
1806             inlined.</para>
1807           </listitem>
1808         </varlistentry>
1809
1810         <varlistentry>
1811           <term><literal>package_deps</literal></term>
1812           <indexterm><primary><literal>package_deps</literal></primary>
1813             <secondary>package specification</secondary></indexterm>
1814           <listitem>
1815             <para>A list of packages which this package depends
1816             on.</para>
1817           </listitem>
1818         </varlistentry>
1819
1820         <varlistentry>
1821           <term><literal>extra_ghc_opts</literal></term>
1822           <indexterm><primary><literal>extra_ghc_opts</literal></primary>
1823             <secondary>package specification</secondary></indexterm>
1824           <listitem>
1825             <para>Extra arguments to be added to the GHC command line
1826             when this package is being used.</para>
1827           </listitem>
1828         </varlistentry>
1829
1830         <varlistentry>
1831           <term><literal>extra_cc_opts</literal></term>
1832           <indexterm><primary><literal>extra_cc_opts</literal></primary>
1833             <secondary>package specification</secondary></indexterm>
1834           <listitem>
1835             <para>Extra arguments to be added to the gcc command line
1836             when this package is being used (only for via-C
1837             compilations).</para>
1838           </listitem>
1839         </varlistentry>
1840
1841         <varlistentry>
1842           <term><literal>extra_ld_opts</literal></term>
1843           <indexterm><primary><literal>extra_ld_opts</literal></primary>
1844             <secondary>package specification</secondary></indexterm>
1845           <listitem>
1846             <para>Extra arguments to be added to the gcc command line
1847             (for linking) when this package is being used.</para>
1848           </listitem>
1849         </varlistentry>
1850       </variablelist>
1851
1852       <para>For examples of more package specifications, take a look
1853       at the <literal>package.conf</literal> in your GHC
1854       installation.</para>
1855     </sect2>
1856   </sect1>
1857
1858
1859 <Sect1 id="options-optimise">
1860 <Title>Optimisation (code improvement)
1861 </Title>
1862
1863 <Para>
1864 <IndexTerm><Primary>optimisation (GHC)</Primary></IndexTerm>
1865 <IndexTerm><Primary>improvement, code (GHC)</Primary></IndexTerm>
1866 </Para>
1867
1868 <Para>
1869 The <Option>-O*</Option> options specify convenient &ldquo;packages&rdquo; of optimisation
1870 flags; the <Option>-f*</Option> options described later on specify
1871 <Emphasis>individual</Emphasis> optimisations to be turned on/off; the <Option>-m*</Option>
1872 options specify <Emphasis>machine-specific</Emphasis> optimisations to be turned
1873 on/off.
1874 </Para>
1875
1876 <Sect2 id="optimise-pkgs">
1877 <Title><Option>-O*</Option>: convenient &ldquo;packages&rdquo; of optimisation flags.
1878 </Title>
1879
1880 <Para>
1881 <IndexTerm><Primary>-O options</Primary></IndexTerm>
1882 </Para>
1883
1884 <Para>
1885 There are <Emphasis>many</Emphasis> options that affect the quality of code
1886 produced by GHC.  Most people only have a general goal, something like
1887 &ldquo;Compile quickly&rdquo; or &ldquo;Make my program run like greased lightning.&rdquo;
1888 The following &ldquo;packages&rdquo; of optimisations (or lack thereof) should
1889 suffice.
1890 </Para>
1891
1892 <Para>
1893 Once you choose a <Option>-O*</Option> &ldquo;package,&rdquo; stick with it&mdash;don't chop and
1894 change.  Modules' interfaces <Emphasis>will</Emphasis> change with a shift to a new
1895 <Option>-O*</Option> option, and you may have to recompile a large chunk of all
1896 importing modules before your program can again be run
1897 safely (see <XRef LinkEnd="recomp">).
1898 </Para>
1899
1900 <Para>
1901 <VariableList>
1902
1903 <VarListEntry>
1904 <Term>No <Option>-O*</Option>-type option specified:</Term>
1905 <IndexTerm><Primary>-O* not specified</Primary></IndexTerm>
1906 <ListItem>
1907 <Para>
1908 This is taken to mean: &ldquo;Please compile quickly; I'm not over-bothered
1909 about compiled-code quality.&rdquo;  So, for example: <Command>ghc -c Foo.hs</Command>
1910 </Para>
1911 </ListItem>
1912 </VarListEntry>
1913 <VarListEntry>
1914 <Term><Option>-O</Option> or <Option>-O1</Option>:</Term>
1915 <IndexTerm><Primary>-O option</Primary></IndexTerm>
1916 <IndexTerm><Primary>-O1 option</Primary></IndexTerm>
1917 <IndexTerm><Primary>optimise</Primary><secondary>normally</secondary></IndexTerm>
1918 <ListItem>
1919 <Para>
1920 Means: &ldquo;Generate good-quality code without taking too long about
1921 it.&rdquo; Thus, for example: <Command>ghc -c -O Main.lhs</Command>
1922 </Para>
1923 </ListItem>
1924 </VarListEntry>
1925 <VarListEntry>
1926 <Term><Option>-O2</Option>:</Term>
1927 <IndexTerm><Primary>-O2 option</Primary></IndexTerm>
1928 <IndexTerm><Primary>optimise</Primary><secondary>aggressively</secondary></IndexTerm>
1929 <ListItem>
1930 <Para>
1931 Means: &ldquo;Apply every non-dangerous optimisation, even if it means
1932 significantly longer compile times.&rdquo;
1933 </Para>
1934
1935 <Para>
1936 The avoided &ldquo;dangerous&rdquo; optimisations are those that can make
1937 runtime or space <Emphasis>worse</Emphasis> if you're unlucky.  They are
1938 normally turned on or off individually.
1939 </Para>
1940
1941 <Para>
1942 At the moment, <Option>-O2</Option> is <Emphasis>unlikely</Emphasis> to produce
1943 better code than <Option>-O</Option>.
1944 </Para>
1945 </ListItem>
1946 </VarListEntry>
1947 <VarListEntry>
1948 <Term><Option>-O2-for-C</Option>:</Term>
1949 <IndexTerm><Primary>-O2-for-C option</Primary></IndexTerm>
1950 <IndexTerm><Primary>gcc, invoking with -O2</Primary></IndexTerm>
1951 <ListItem>
1952 <Para>
1953 Says to run GCC with <Option>-O2</Option>, which may be worth a few percent in
1954 execution speed.  Don't forget <Option>-fvia-C</Option>, lest you use the native-code
1955 generator and bypass GCC altogether!
1956 </Para>
1957 </ListItem>
1958 </VarListEntry>
1959 <VarListEntry>
1960 <Term><Option>-Onot</Option>:</Term>
1961 <IndexTerm><Primary>-Onot option</Primary></IndexTerm>
1962 <IndexTerm><Primary>optimising, reset</Primary></IndexTerm>
1963 <ListItem>
1964 <Para>
1965 This option will make GHC &ldquo;forget&rdquo; any
1966 <Option>-O</Option>ish options it has seen so far.  Sometimes useful;
1967 for example: <Command>make all
1968 EXTRA&lowbar;HC&lowbar;OPTS=-Onot</Command>.
1969 </Para>
1970 </ListItem>
1971 </VarListEntry>
1972 <VarListEntry>
1973 <Term><Option>-Ofile &lt;file&gt;</Option>:</Term>
1974 <IndexTerm><Primary>-Ofile &lt;file&gt; option</Primary></IndexTerm>
1975 <IndexTerm><Primary>optimising, customised</Primary></IndexTerm>
1976 <ListItem>
1977 <Para>
1978 For those who need <Emphasis>absolute</Emphasis> control over
1979 <Emphasis>exactly</Emphasis> what options are used (e.g., compiler
1980 writers, sometimes :-), a list of options can be put in a file and
1981 then slurped in with <Option>-Ofile</Option>.
1982 </Para>
1983
1984 <Para>
1985 In that file, comments are of the
1986 <Literal>&num;</Literal>-to-end-of-line variety; blank lines and most
1987 whitespace is ignored.
1988 </Para>
1989
1990 <Para>
1991 Please ask if you are baffled and would like an example of <Option>-Ofile</Option>!
1992 </Para>
1993 </ListItem>
1994 </VarListEntry>
1995 </VariableList>
1996 </Para>
1997
1998 <Para>
1999 At Glasgow, we don't use a <Option>-O*</Option> flag for day-to-day work.  We use
2000 <Option>-O</Option> to get respectable speed; e.g., when we want to measure
2001 something.  When we want to go for broke, we tend to use <Option>-O -fvia-C
2002 -O2-for-C</Option> (and we go for lots of coffee breaks).
2003 </Para>
2004
2005 <Para>
2006 The easiest way to see what <Option>-O</Option> (etc.) &ldquo;really mean&rdquo; is to run with
2007 <Option>-v</Option>, then stand back in amazement.  Alternatively, just look at the
2008 <Literal>HsC&lowbar;minus&lt;blah&gt;</Literal> lists in the GHC driver script.
2009 </Para>
2010
2011 </Sect2>
2012
2013 <Sect2>
2014 <Title><Option>-f*</Option>: platform-independent flags</Title>
2015
2016 <Para>
2017 <IndexTerm><Primary>-f* options (GHC)</Primary></IndexTerm>
2018 <IndexTerm><Primary>-fno-* options (GHC)</Primary></IndexTerm>
2019 </Para>
2020
2021 <Para>
2022 Flags can be turned <Emphasis>off</Emphasis> individually.  (NB: I hope you have a
2023 good reason for doing this&hellip;) To turn off the <Option>-ffoo</Option> flag, just use
2024 the <Option>-fno-foo</Option> flag.<IndexTerm><Primary>-fno-&lt;opt&gt; anti-option</Primary></IndexTerm> So, for
2025 example, you can say <Option>-O2 -fno-strictness</Option>, which will then drop out
2026 any running of the strictness analyser.
2027 </Para>
2028
2029 <Para>
2030 The options you are most likely to want to turn off are:
2031
2032 <ItemizedList>
2033 <ListItem>
2034
2035 <Para>
2036 <Option>-fno-strictness</Option><IndexTerm><Primary>-fno-strictness option</Primary></IndexTerm> (strictness
2037 analyser, because it is sometimes slow),
2038 </Para>
2039 </ListItem>
2040 <ListItem>
2041
2042 <Para>
2043 <Option>-fno-specialise</Option><IndexTerm><Primary>-fno-specialise option</Primary></IndexTerm> (automatic
2044 specialisation of overloaded functions, because it can make your code
2045 bigger) (US spelling also accepted), and
2046 </Para>
2047 </ListItem>
2048 <ListItem>
2049
2050 <Para>
2051 <Option>-fno-cpr-analyse</Option><IndexTerm><Primary>-fno-cpr-analyse option</Primary></IndexTerm> switches off the CPR (constructed product
2052 result) analyser.
2053 </Para>
2054 </ListItem>
2055
2056 </ItemizedList>
2057
2058 </Para>
2059
2060 <Para>
2061 Should you wish to turn individual flags <Emphasis>on</Emphasis>, you are advised
2062 to use the <Option>-Ofile</Option> option, described above.  Because the order in
2063 which optimisation passes are run is sometimes crucial, it's quite
2064 hard to do with command-line options.
2065 </Para>
2066
2067 <Para>
2068 Here are some &ldquo;dangerous&rdquo; optimisations you <Emphasis>might</Emphasis> want to try:
2069 <VariableList>
2070
2071 <VarListEntry>
2072 <Term><Option>-fvia-C</Option>:</Term>
2073 <ListItem>
2074 <Para>
2075 <IndexTerm><Primary>-fvia-C option</Primary></IndexTerm>
2076 <IndexTerm><Primary>native code generator, turning off</Primary></IndexTerm>
2077 </Para>
2078
2079 <Para>
2080 Compile via C, and don't use the native-code generator.  (There are many
2081 cases when GHC does this on its own.) You might pick up a little bit of
2082 speed by compiling via C (e.g. for floating-point intensive code on Intel).
2083 If you use <Function>&lowbar;casm&lowbar;</Function>s (which are utterly
2084 deprecated), you probably <Emphasis>have</Emphasis> to use
2085 <Option>-fvia-C</Option>.
2086 </Para>
2087
2088 <Para>
2089 The lower-case incantation, <Option>-fvia-c</Option>, is synonymous.
2090 </Para>
2091
2092 <Para>
2093 Compiling via C will probably be slower (in compilation time) than
2094 using GHC's native code generator.
2095 </Para>
2096 </ListItem>
2097 </VarListEntry>
2098 <VarListEntry>
2099 <Term><Option>-funfolding-interface-threshold&lt;n&gt;</Option>:</Term>
2100 <ListItem>
2101 <Para>
2102 <IndexTerm><Primary>-funfolding-interface-threshold option</Primary></IndexTerm>
2103 <IndexTerm><Primary>inlining, controlling</Primary></IndexTerm>
2104 <IndexTerm><Primary>unfolding, controlling</Primary></IndexTerm>
2105 (Default: 30) By raising or lowering this number, you can raise or
2106 lower the amount of pragmatic junk that gets spewed into interface
2107 files.  (An unfolding has a &ldquo;size&rdquo; that reflects the cost in terms
2108 of &ldquo;code bloat&rdquo; of expanding that unfolding in another module.  A
2109 bigger function would be assigned a bigger cost.)
2110 </Para>
2111 </ListItem>
2112 </VarListEntry>
2113 <VarListEntry>
2114 <Term><Option>-funfolding-creation-threshold&lt;n&gt;</Option>:</Term>
2115 <ListItem>
2116 <Para>
2117 <IndexTerm><Primary>-funfolding-creation-threshold option</Primary></IndexTerm>
2118 <IndexTerm><Primary>inlining, controlling</Primary></IndexTerm>
2119 <IndexTerm><Primary>unfolding, controlling</Primary></IndexTerm>
2120 (Default: 30) This option is similar to
2121 <Option>-funfolding-interface-threshold</Option>, except that it governs unfoldings
2122 within a single module.  Increasing this figure is more likely to
2123 result in longer compile times than faster code.  The next option is
2124 more useful:
2125 </Para>
2126 </ListItem>
2127 </VarListEntry>
2128 <VarListEntry>
2129 <Term><Option>-funfolding-use-threshold&lt;n&gt;</Option>:</Term>
2130 <ListItem>
2131 <Para>
2132 <IndexTerm><Primary>-funfolding-use-threshold option</Primary></IndexTerm>
2133 <IndexTerm><Primary>inlining, controlling</Primary></IndexTerm>
2134 <IndexTerm><Primary>unfolding, controlling</Primary></IndexTerm>
2135 (Default: 8) This is the magic cut-off figure for unfolding: below
2136 this size, a function definition will be unfolded at the call-site,
2137 any bigger and it won't.  The size computed for a function depends on
2138 two things: the actual size of the expression minus any discounts that
2139 apply (see <Option>-funfolding-con-discount</Option>).
2140 </Para>
2141 </ListItem>
2142 </VarListEntry>
2143
2144 <VarListEntry>
2145 <Term><Option>-funfolding-update-in-place&lt;n&gt;</Option>:</Term>
2146 <ListItem>
2147 Switches on an experimental "optimisation".  Switching it on makes the compiler
2148 a little keener to inline a function that returns a constructor, if the context is
2149 that of a thunk.
2150 <ProgramListing>
2151    x = plusInt a b
2152 </ProgramListing>
2153 If we inlined plusInt we might get an opportunity to use update-in-place for
2154 the thunk 'x'.
2155 </Para>
2156 </ListItem>
2157 </VarListEntry>
2158
2159 <VarListEntry>
2160 <Term><Option>-funbox-strict-fields</Option>:</Term>
2161 <ListItem>
2162 <Para>
2163 <IndexTerm><Primary>-funbox-strict-fields option</Primary></IndexTerm>
2164 <IndexTerm><Primary>strict constructor fields</Primary></IndexTerm>
2165 <IndexTerm><Primary>constructor fields, strict</Primary></IndexTerm>
2166 </Para>
2167
2168 <Para>
2169 This option causes all constructor fields which are marked strict
2170 (i.e. &ldquo;!&rdquo;) to be unboxed or unpacked if possible.  For example:
2171 </Para>
2172
2173 <Para>
2174
2175 <ProgramListing>
2176 data T = T !Float !Float
2177 </ProgramListing>
2178
2179 </Para>
2180
2181 <Para>
2182 will create a constructor <Literal>T</Literal> containing two unboxed floats if the
2183 <Option>-funbox-strict-fields</Option> flag is given.  This may not always be an
2184 optimisation: if the <Function>T</Function> constructor is scrutinised and the floats
2185 passed to a non-strict function for example, they will have to be
2186 reboxed (this is done automatically by the compiler).
2187 </Para>
2188
2189 <Para>
2190 This option should only be used in conjunction with <Option>-O</Option>, in order to
2191 expose unfoldings to the compiler so the reboxing can be removed as
2192 often as possible.  For example:
2193 </Para>
2194
2195 <Para>
2196
2197 <ProgramListing>
2198 f :: T -&#62; Float
2199 f (T f1 f2) = f1 + f2
2200 </ProgramListing>
2201
2202 </Para>
2203
2204 <Para>
2205 The compiler will avoid reboxing <Function>f1</Function> and <Function>f2</Function> by inlining <Function>+</Function> on
2206 floats, but only when <Option>-O</Option> is on.
2207 </Para>
2208
2209 <Para>
2210 Any single-constructor data is eligible for unpacking; for example
2211 </Para>
2212
2213 <Para>
2214
2215 <ProgramListing>
2216 data T = T !(Int,Int)
2217 </ProgramListing>
2218
2219 </Para>
2220
2221 <Para>
2222 will store the two <Literal>Int</Literal>s directly in the <Function>T</Function> constructor, by flattening
2223 the pair.  Multi-level unpacking is also supported:
2224 </Para>
2225
2226 <Para>
2227
2228 <ProgramListing>
2229 data T = T !S
2230 data S = S !Int !Int
2231 </ProgramListing>
2232
2233 </Para>
2234
2235 <Para>
2236 will store two unboxed <Literal>Int&num;</Literal>s directly in the <Function>T</Function> constructor.
2237 </Para>
2238 </ListItem>
2239 </VarListEntry>
2240 <VarListEntry>
2241 <Term><Option>-fsemi-tagging</Option>:</Term>
2242 <ListItem>
2243 <Para>
2244 This option (which <Emphasis>does not work</Emphasis> with the native-code generator)
2245 tells the compiler to add extra code to test for already-evaluated
2246 values.  You win if you have lots of such values during a run of your
2247 program, you lose otherwise.  (And you pay in extra code space.)
2248 </Para>
2249
2250 <Para>
2251 We have not played with <Option>-fsemi-tagging</Option> enough to recommend it.
2252 (For all we know, it doesn't even work anymore&hellip; Sigh.)
2253 </Para>
2254 </ListItem>
2255 </VarListEntry>
2256 <VarListEntry>
2257 <Term><Option>-fexcess-precision</Option>:</Term>
2258 <ListItem>
2259 <Para>
2260 When this option is given, intermediate floating point values can have
2261 a <Emphasis>greater</Emphasis> precision/range than the final type.
2262 Generally this is a good thing, but some programs may rely on the
2263 exact precision/range of <Literal>Float</Literal>/<Literal>Double</Literal>
2264 values and should not use this option for their compilation.
2265 </Para>
2266 </ListItem>
2267 </VarListEntry>
2268 </VariableList>
2269 </Para>
2270
2271 </Sect2>
2272
2273 <Sect2>
2274 <Title><Option>-m*</Option>: platform-specific flags</Title>
2275
2276 <Para>
2277 <IndexTerm><Primary>-m* options (GHC)</Primary></IndexTerm>
2278 <IndexTerm><Primary>platform-specific options</Primary></IndexTerm>
2279 <IndexTerm><Primary>machine-specific options</Primary></IndexTerm>
2280 </Para>
2281
2282 <Para>
2283 Some flags only make sense for particular target platforms.
2284 </Para>
2285
2286 <Para>
2287 <VariableList>
2288
2289 <VarListEntry>
2290 <Term><Option>-mv8</Option>:</Term>
2291 <ListItem>
2292 <Para>
2293 (SPARC machines)<IndexTerm><Primary>-mv8 option (SPARC only)</Primary></IndexTerm>
2294 Means to pass the like-named option to GCC; it says to use the
2295 Version 8 SPARC instructions, notably integer multiply and divide.
2296 The similiar <Option>-m*</Option> GCC options for SPARC also work, actually.
2297 </Para>
2298 </ListItem>
2299 </VarListEntry>
2300 <VarListEntry>
2301 <Term><Option>-mlong-calls</Option>:</Term>
2302 <ListItem>
2303 <Para>
2304 (HPPA machines)<IndexTerm><Primary>-mlong-calls option (HPPA only)</Primary></IndexTerm>
2305 Means to pass the like-named option to GCC.  Required for Very Big
2306 modules, maybe.  (Probably means you're in trouble&hellip;)
2307 </Para>
2308 </ListItem>
2309 </VarListEntry>
2310 <VarListEntry>
2311 <Term><Option>-monly-[32]-regs</Option>:</Term>
2312 <ListItem>
2313 <Para>
2314 (iX86 machines)<IndexTerm><Primary>-monly-N-regs option (iX86 only)</Primary></IndexTerm>
2315 GHC tries to &ldquo;steal&rdquo; four registers from GCC, for performance
2316 reasons; it almost always works.  However, when GCC is compiling some
2317 modules with four stolen registers, it will crash, probably saying:
2318
2319 <Screen>
2320 Foo.hc:533: fixed or forbidden register was spilled.
2321 This may be due to a compiler bug or to impossible asm
2322 statements or clauses.
2323 </Screen>
2324
2325 Just give some registers back with <Option>-monly-N-regs</Option>.  Try `3' first,
2326 then `2'.  If `2' doesn't work, please report the bug to us.
2327 </Para>
2328 </ListItem>
2329 </VarListEntry>
2330 </VariableList>
2331 </Para>
2332
2333 </Sect2>
2334
2335 <Sect2 id="optimise-C-compiler">
2336 <Title>Code improvement by the C compiler.
2337 </Title>
2338
2339 <Para>
2340 <IndexTerm><Primary>optimisation by GCC</Primary></IndexTerm>
2341 <IndexTerm><Primary>GCC optimisation</Primary></IndexTerm>
2342 </Para>
2343
2344 <Para>
2345 The C&nbsp;compiler (GCC) is run with <Option>-O</Option> turned on.  (It has
2346 to be, actually).
2347 </Para>
2348
2349 <Para>
2350 If you want to run GCC with <Option>-O2</Option>&mdash;which may be worth a few
2351 percent in execution speed&mdash;you can give a
2352 <Option>-O2-for-C</Option><IndexTerm><Primary>-O2-for-C option</Primary></IndexTerm> option.
2353 </Para>
2354
2355 </Sect2>
2356
2357 </Sect1>
2358
2359 <Sect1 id="options-phases">
2360 <Title>Options related to a particular phase
2361 </Title>
2362
2363 <Sect2 id="c-pre-processor">
2364 <Title>The C pre-processor
2365 </Title>
2366
2367 <Para>
2368 <IndexTerm><Primary>pre-processing: cpp</Primary></IndexTerm>
2369 <IndexTerm><Primary>C pre-processor options</Primary></IndexTerm>
2370 <IndexTerm><Primary>cpp, pre-processing with</Primary></IndexTerm>
2371 </Para>
2372
2373 <Para>
2374 The C pre-processor <Command>cpp</Command> is run over your Haskell code only if the
2375 <Option>-cpp</Option> option <IndexTerm><Primary>-cpp option</Primary></IndexTerm> is given.  Unless you are
2376 building a large system with significant doses of conditional
2377 compilation, you really shouldn't need it.
2378 <VariableList>
2379
2380 <VarListEntry>
2381 <Term><Option>-D&lt;foo&gt;</Option>:</Term>
2382 <ListItem>
2383 <Para>
2384 <IndexTerm><Primary>-D&lt;name&gt; option</Primary></IndexTerm>
2385 Define macro <Constant>&lt;foo&gt;</Constant> in the usual way.  NB: does <Emphasis>not</Emphasis> affect
2386 <Option>-D</Option> macros passed to the C&nbsp;compiler when compiling via C!  For those,
2387 use the <Option>-optc-Dfoo</Option> hack&hellip; (see <XRef LinkEnd="forcing-options-through">).
2388 </Para>
2389 </ListItem>
2390 </VarListEntry>
2391 <VarListEntry>
2392 <Term><Option>-U&lt;foo&gt;</Option>:</Term>
2393 <ListItem>
2394 <Para>
2395 <IndexTerm><Primary>-U&lt;name&gt; option</Primary></IndexTerm>
2396 Undefine macro <Command>&lt;foo&gt;</Command> in the usual way.
2397 </Para>
2398 </ListItem>
2399 </VarListEntry>
2400 <VarListEntry>
2401 <Term><Option>-I&lt;dir&gt;</Option>:</Term>
2402 <ListItem>
2403 <Para>
2404 <IndexTerm><Primary>-I&lt;dir&gt; option</Primary></IndexTerm>
2405 Specify a directory in which to look for <Literal>&num;include</Literal> files, in
2406 the usual C way.
2407 </Para>
2408 </ListItem>
2409 </VarListEntry>
2410 </VariableList>
2411 </Para>
2412
2413 <Para>
2414 The GHC driver pre-defines several macros when processing Haskell
2415 source code (<Filename>.hs</Filename> or <Filename>.lhs</Filename> files):
2416 </Para>
2417
2418 <Para>
2419 <VariableList>
2420
2421 <VarListEntry>
2422 <Term><Constant>&lowbar;&lowbar;HASKELL98&lowbar;&lowbar;</Constant>:</Term>
2423 <ListItem>
2424 <Para>
2425 <IndexTerm><Primary>&lowbar;&lowbar;HASKELL98&lowbar;&lowbar;</Primary></IndexTerm>
2426 If defined, this means that GHC supports the language defined by the
2427 Haskell 98 report.
2428 </Para>
2429 </ListItem>
2430 </VarListEntry>
2431 <VarListEntry>
2432 <Term><Constant>&lowbar;&lowbar;HASKELL&lowbar;&lowbar;=98</Constant>:</Term>
2433 <ListItem>
2434 <Para>
2435 <IndexTerm><Primary>&lowbar;&lowbar;HASKELL&lowbar;&lowbar;</Primary></IndexTerm>
2436 In GHC 4.04 and later, the <Constant>&lowbar;&lowbar;HASKELL&lowbar;&lowbar;</Constant> macro is defined as having
2437 the value <Constant>98</Constant>.
2438 </Para>
2439 </ListItem>
2440 </VarListEntry>
2441 <VarListEntry>
2442 <Term><Constant>&lowbar;&lowbar;HASKELL1&lowbar;&lowbar;</Constant>:</Term>
2443 <ListItem>
2444 <Para>
2445 <IndexTerm><Primary>&lowbar;&lowbar;HASKELL1&lowbar;&lowbar; macro</Primary></IndexTerm>
2446 If defined to <Emphasis>n</Emphasis>, that means GHC supports the Haskell language
2447 defined in the Haskell report version <Emphasis>1.n</Emphasis>.  Currently 5.  This
2448 macro is deprecated, and will probably disappear in future versions.
2449 </Para>
2450 </ListItem>
2451 </VarListEntry>
2452 <VarListEntry>
2453 <Term><Constant>&lowbar;&lowbar;GLASGOW&lowbar;HASKELL&lowbar;&lowbar;</Constant>:</Term>
2454 <ListItem>
2455 <Para>
2456 <IndexTerm><Primary>&lowbar;&lowbar;GLASGOW&lowbar;HASKELL&lowbar;&lowbar; macro</Primary></IndexTerm>
2457 For version <Emphasis>n</Emphasis> of the GHC system, this will be <Literal>&num;define</Literal>d to
2458 <Emphasis>100n</Emphasis>.  So, for version 4.00, it is 400.
2459 </Para>
2460
2461 <Para>
2462 With any luck, <Constant>&lowbar;&lowbar;GLASGOW&lowbar;HASKELL&lowbar;&lowbar;</Constant> will be undefined in all other
2463 implementations that support C-style pre-processing.
2464 </Para>
2465
2466 <Para>
2467 (For reference: the comparable symbols for other systems are:
2468 <Constant>&lowbar;&lowbar;HUGS&lowbar;&lowbar;</Constant> for Hugs and <Constant>&lowbar;&lowbar;HBC&lowbar;&lowbar;</Constant> for Chalmers.)
2469 </Para>
2470
2471 <Para>
2472 NB. This macro is set when pre-processing both Haskell source and C
2473 source, including the C source generated from a Haskell module
2474 (i.e. <Filename>.hs</Filename>, <Filename>.lhs</Filename>, <Filename>.c</Filename> and <Filename>.hc</Filename> files).
2475 </Para>
2476 </ListItem>
2477 </VarListEntry>
2478 <VarListEntry>
2479 <Term><Constant>&lowbar;&lowbar;CONCURRENT&lowbar;HASKELL&lowbar;&lowbar;</Constant>:</Term>
2480 <ListItem>
2481 <Para>
2482 <IndexTerm><Primary>&lowbar;&lowbar;CONCURRENT&lowbar;HASKELL&lowbar;&lowbar; macro</Primary></IndexTerm>
2483 This symbol is defined when pre-processing Haskell (input) and
2484 pre-processing C (GHC output).  Since GHC from verion 4.00 now
2485 supports concurrent haskell by default, this symbol is always defined.
2486 </Para>
2487 </ListItem>
2488 </VarListEntry>
2489 <VarListEntry>
2490 <Term><Constant>&lowbar;&lowbar;PARALLEL&lowbar;HASKELL&lowbar;&lowbar;</Constant>:</Term>
2491 <ListItem>
2492 <Para>
2493 <IndexTerm><Primary>&lowbar;&lowbar;PARALLEL&lowbar;HASKELL&lowbar;&lowbar; macro</Primary></IndexTerm>
2494 Only defined when <Option>-parallel</Option> is in use!  This symbol is defined when
2495 pre-processing Haskell (input) and pre-processing C (GHC output).
2496 </Para>
2497 </ListItem>
2498 </VarListEntry>
2499 </VariableList>
2500 </Para>
2501
2502 <Para>
2503 Options other than the above can be forced through to the C
2504 pre-processor with the <Option>-opt</Option> flags (see
2505 <XRef LinkEnd="forcing-options-through">).
2506 </Para>
2507
2508 <Para>
2509 A small word of warning: <Option>-cpp</Option> is not friendly to &ldquo;string
2510 gaps&rdquo;.<IndexTerm><Primary>-cpp vs string gaps</Primary></IndexTerm><IndexTerm><Primary>string gaps vs
2511 -cpp</Primary></IndexTerm>.  In other words, strings such as the following:
2512 </Para>
2513
2514 <Para>
2515
2516 <ProgramListing>
2517 strmod = "\
2518 \ p \
2519 \ "
2520 </ProgramListing>
2521
2522 </Para>
2523
2524 <Para>
2525 don't work with <Option>-cpp</Option>; <Filename>/usr/bin/cpp</Filename> elides the
2526 backslash-newline pairs.
2527 </Para>
2528
2529 <Para>
2530 However, it appears that if you add a space at the end of the line,
2531 then <Command>cpp</Command> (at least GNU <Command>cpp</Command> and possibly other <Command>cpp</Command>s)
2532 leaves the backslash-space pairs alone and the string gap works as
2533 expected.
2534 </Para>
2535
2536 </Sect2>
2537
2538 <Sect2 id="options-C-compiler">
2539 <Title>Options affecting the C compiler (if applicable)
2540 </Title>
2541
2542 <Para>
2543 <IndexTerm><Primary>include-file options</Primary></IndexTerm>
2544 <IndexTerm><Primary>C compiler options</Primary></IndexTerm>
2545 <IndexTerm><Primary>GCC options</Primary></IndexTerm>
2546 </Para>
2547
2548 <Para>
2549 At the moment, quite a few common C-compiler options are passed on
2550 quietly to the C compilation of Haskell-compiler-generated C files.
2551 THIS MAY CHANGE.  Meanwhile, options so sent are:
2552 </Para>
2553
2554 <Para>
2555
2556 <InformalTable>
2557 <TGroup Cols="2">
2558 <ColSpec Align="Left" Colsep="0">
2559 <ColSpec Align="Left" Colsep="0">
2560 <TBody>
2561 <Row>
2562 <Entry><Option>-ansi</Option> </Entry>
2563 <Entry> do ANSI C (not K&amp;R) </Entry>
2564 </Row>
2565 <Row>
2566 <Entry>
2567 <Option>-pedantic</Option> </Entry>
2568 <Entry> be so</Entry>
2569 </Row>
2570 <Row>
2571 <Entry>
2572 <Option>-dgcc-lint</Option> </Entry>
2573 <Entry> (hack) short for &ldquo;make GCC very paranoid&rdquo;</Entry>
2574 </Row>
2575
2576 </TBody>
2577
2578 </TGroup>
2579 </InformalTable>
2580
2581 <IndexTerm><Primary>-ansi option (for GCC)</Primary></IndexTerm>
2582 <IndexTerm><Primary>-pedantic option (for GCC)</Primary></IndexTerm>
2583 <IndexTerm><Primary>-dgcc-lint option (GCC paranoia)</Primary></IndexTerm>
2584 </Para>
2585
2586 <Para>
2587 If you are compiling with lots of foreign calls, you may need to
2588 tell the C&nbsp;compiler about some <Literal>&num;include</Literal> files.  There is no real
2589 pretty way to do this, but you can use this hack from the
2590 command-line:
2591 </Para>
2592
2593 <Para>
2594
2595 <Screen>
2596 % ghc -c '-#include &#60;X/Xlib.h&#62;' Xstuff.lhs
2597 </Screen>
2598
2599 </Para>
2600
2601 </Sect2>
2602
2603 <Sect2 id="options-linker">
2604 <Title>Linking and consistency-checking
2605 </Title>
2606
2607 <Para>
2608 <IndexTerm><Primary>linker options</Primary></IndexTerm>
2609 <IndexTerm><Primary>ld options</Primary></IndexTerm>
2610 </Para>
2611
2612 <Para>
2613 GHC has to link your code with various libraries, possibly including:
2614 user-supplied, GHC-supplied, and system-supplied (<Option>-lm</Option> math
2615 library, for example).
2616 </Para>
2617
2618 <Para>
2619 <VariableList>
2620
2621 <VarListEntry>
2622 <Term><Option>-l&lt;FOO&gt;</Option>:</Term>
2623 <ListItem>
2624 <Para>
2625 <IndexTerm><Primary>-l&lt;lib&gt; option</Primary></IndexTerm>
2626 Link in a library named <Filename>lib&lt;FOO&gt;.a</Filename> which resides somewhere on the
2627 library directories path.
2628 </Para>
2629
2630 <Para>
2631 Because of the sad state of most UNIX linkers, the order of such
2632 options does matter.  Thus: <Command>ghc -lbar *.o</Command> is almost certainly
2633 wrong, because it will search <Filename>libbar.a</Filename> <Emphasis>before</Emphasis> it has
2634 collected unresolved symbols from the <Filename>*.o</Filename> files.
2635 <Command>ghc *.o -lbar</Command> is probably better.
2636 </Para>
2637
2638 <Para>
2639 The linker will of course be informed about some GHC-supplied
2640 libraries automatically; these are:
2641 </Para>
2642
2643 <Para>
2644
2645 <InformalTable>
2646 <TGroup Cols="2">
2647 <ColSpec Align="Left" Colsep="0">
2648 <ColSpec Align="Left" Colsep="0">
2649 <TBody>
2650 <Row>
2651 <Entry><Emphasis>-l equivalent</Emphasis> </Entry>
2652 <Entry> <Emphasis>description</Emphasis> </Entry>
2653 </Row>
2654
2655 <Row>
2656 <Entry>
2657 <Option>-lHSrts,-lHSclib</Option> </Entry>
2658 <Entry> basic runtime libraries </Entry>
2659 </Row>
2660 <Row>
2661 <Entry>
2662 <Option>-lHS</Option> </Entry>
2663 <Entry> standard Prelude library </Entry>
2664 </Row>
2665 <Row>
2666 <Entry>
2667 <Option>-lHS&lowbar;cbits</Option> </Entry>
2668 <Entry> C support code for standard Prelude library </Entry>
2669 </Row>
2670 <Row>
2671 <Entry>
2672 <Option>-lgmp</Option> </Entry>
2673 <Entry> GNU multi-precision library (for Integers)</Entry>
2674 </Row>
2675
2676 </TBody>
2677
2678 </TGroup>
2679 </InformalTable>
2680
2681 </Para>
2682
2683 <Para>
2684 <IndexTerm><Primary>-lHS library</Primary></IndexTerm>
2685 <IndexTerm><Primary>-lHS&lowbar;cbits library</Primary></IndexTerm>
2686 <IndexTerm><Primary>-lHSrts library</Primary></IndexTerm>
2687 <IndexTerm><Primary>-lgmp library</Primary></IndexTerm>
2688 </Para>
2689 </ListItem>
2690 </VarListEntry>
2691 <VarListEntry>
2692 <Term><Option>-package &lt;name&gt;</Option>:</Term>
2693 <ListItem>
2694 <Para>
2695 <IndexTerm><Primary>-package &lt;name&gt; option</Primary></IndexTerm>
2696 </Para>
2697
2698 <Para>
2699 If you are using a Haskell &ldquo;package&rdquo; (e.g., the POSIX
2700 library), just use the <Option>-package posix</Option> option, and the
2701 correct code should be linked in.  See <xref linkend="packages"> for
2702 more details.
2703 </Para>
2704 </ListItem>
2705 </VarListEntry>
2706 <VarListEntry>
2707 <Term><Option>-L&lt;dir&gt;</Option>:</Term>
2708 <ListItem>
2709 <Para>
2710 <IndexTerm><Primary>-L&lt;dir&gt; option</Primary></IndexTerm>
2711 Where to find user-supplied libraries&hellip;  Prepend the directory
2712 <Filename>&lt;dir&gt;</Filename> to the library directories path.
2713 </Para>
2714 </ListItem>
2715 </VarListEntry>
2716 <VarListEntry>
2717 <Term><Option>-static</Option>:</Term>
2718 <ListItem>
2719 <Para>
2720 <IndexTerm><Primary>-static option</Primary></IndexTerm>
2721 Tell the linker to avoid shared libraries.
2722 </Para>
2723 </ListItem>
2724 </VarListEntry>
2725 <VarListEntry>
2726 <Term><Option>-no-link-chk</Option> and <Option>-link-chk</Option>:</Term>
2727 <ListItem>
2728 <Para>
2729 <IndexTerm><Primary>-no-link-chk option</Primary></IndexTerm>
2730 <IndexTerm><Primary>-link-chk option</Primary></IndexTerm>
2731 <IndexTerm><Primary>consistency checking of executables</Primary></IndexTerm>
2732 By default, immediately after linking an executable, GHC verifies that
2733 the pieces that went into it were compiled with compatible flags; a
2734 &ldquo;consistency check&rdquo;.
2735 (This is to avoid mysterious failures caused by non-meshing of
2736 incompatibly-compiled programs; e.g., if one <Filename>.o</Filename> file was compiled
2737 for a parallel machine and the others weren't.)  You may turn off this
2738 check with <Option>-no-link-chk</Option>.  You can turn it (back) on with
2739 <Option>-link-chk</Option> (the default).
2740 </Para>
2741 </ListItem>
2742 </VarListEntry>
2743 <VarListEntry>
2744 <Term><Option>-no-hs-main</Option>:</Term>
2745 <ListItem>
2746 <Para>
2747 <IndexTerm><Primary>-no-hs-main option</Primary></IndexTerm>
2748 <IndexTerm><Primary>linking Haskell libraries with foreign code</Primary></IndexTerm>
2749 </Para>
2750
2751 <Para>
2752 In the event you want to include ghc-compiled code as part of another
2753 (non-Haskell) program, the RTS will not be supplying its definition of
2754 <Function>main()</Function> at link-time, you will have to. To signal that to the
2755 driver script when linking, use <Option>-no-hs-main</Option>.
2756 </Para>
2757
2758 <Para>
2759 Notice that since the command-line passed to the linker is rather
2760 involved, you probably want to use the ghc driver script to do the
2761 final link of your `mixed-language' application. This is not a
2762 requirement though, just try linking once with <Option>-v</Option> on to see what
2763 options the driver passes through to the linker.
2764 </Para>
2765 </ListItem>
2766 </VarListEntry>
2767 </VariableList>
2768 </Para>
2769
2770 </Sect2>
2771
2772 </Sect1>
2773
2774 <Sect1 id="sec-using-concurrent">
2775 <Title>Using Concurrent Haskell</Title>
2776
2777 <Para>
2778 <IndexTerm><Primary>Concurrent Haskell&mdash;use</Primary></IndexTerm>
2779 </Para>
2780
2781 <Para>
2782 GHC (as of version 4.00) supports Concurrent Haskell by default,
2783 without requiring a special option or libraries compiled in a certain
2784 way.  To get access to the support libraries for Concurrent Haskell
2785 (i.e. <Literal>Concurrent</Literal> and friends), use the
2786 <Option>-package concurrent</Option> option.
2787 </Para>
2788
2789 <Para>
2790 Three RTS options are provided for modifying the behaviour of the
2791 threaded runtime system.  See the descriptions of
2792 <Option>-C[&lt;us&gt;]</Option>, <Option>-q</Option>, and
2793 <Option>-t&lt;num&gt;</Option> in <XRef LinkEnd="parallel-rts-opts">.
2794 </Para>
2795
2796 <Para>
2797 Concurrent Haskell is described in more detail in <XRef
2798 LinkEnd="sec-Concurrent">.
2799 </Para>
2800
2801 </Sect1>
2802
2803 <Sect1 id="sec-using-parallel">
2804 <Title>Using Parallel Haskell</Title>
2805
2806 <Para>
2807 <IndexTerm><Primary>Parallel Haskell&mdash;use</Primary></IndexTerm>
2808 </Para>
2809
2810 <Para>
2811 &lsqb;You won't be able to execute parallel Haskell programs unless PVM3
2812 (Parallel Virtual Machine, version 3) is installed at your site.]
2813 </Para>
2814
2815 <Para>
2816 To compile a Haskell program for parallel execution under PVM, use the
2817 <Option>-parallel</Option> option,<IndexTerm><Primary>-parallel
2818 option</Primary></IndexTerm> both when compiling <Emphasis>and
2819 linking</Emphasis>.  You will probably want to <Literal>import
2820 Parallel</Literal> into your Haskell modules.
2821 </Para>
2822
2823 <Para>
2824 To run your parallel program, once PVM is going, just invoke it
2825 &ldquo;as normal&rdquo;.  The main extra RTS option is
2826 <Option>-N&lt;n&gt;</Option>, to say how many PVM
2827 &ldquo;processors&rdquo; your program to run on.  (For more details of
2828 all relevant RTS options, please see <XRef
2829 LinkEnd="parallel-rts-opts">.)
2830 </Para>
2831
2832 <Para>
2833 In truth, running Parallel Haskell programs and getting information
2834 out of them (e.g., parallelism profiles) is a battle with the vagaries of
2835 PVM, detailed in the following sections.
2836 </Para>
2837
2838 <Sect2>
2839 <Title>Dummy's guide to using PVM</Title>
2840
2841 <Para>
2842 <IndexTerm><Primary>PVM, how to use</Primary></IndexTerm>
2843 <IndexTerm><Primary>Parallel Haskell&mdash;PVM use</Primary></IndexTerm>
2844 Before you can run a parallel program under PVM, you must set the
2845 required environment variables (PVM's idea, not ours); something like,
2846 probably in your <Filename>.cshrc</Filename> or equivalent:
2847
2848 <ProgramListing>
2849 setenv PVM_ROOT /wherever/you/put/it
2850 setenv PVM_ARCH `$PVM_ROOT/lib/pvmgetarch`
2851 setenv PVM_DPATH $PVM_ROOT/lib/pvmd
2852 </ProgramListing>
2853
2854 </Para>
2855
2856 <Para>
2857 Creating and/or controlling your &ldquo;parallel machine&rdquo; is a purely-PVM
2858 business; nothing specific to Parallel Haskell.
2859 </Para>
2860
2861 <Para>
2862 You use the <Command>pvm</Command><IndexTerm><Primary>pvm command</Primary></IndexTerm> command to start PVM on your
2863 machine.  You can then do various things to control/monitor your
2864 &ldquo;parallel machine;&rdquo; the most useful being:
2865 </Para>
2866
2867 <Para>
2868 <InformalTable>
2869 <TGroup Cols=2>
2870 <ColSpec Align="Left">
2871 <TBody>
2872
2873 <Row>
2874 <Entry><KeyCombo><KeyCap>Control</KeyCap><KeyCap>D</KeyCap></KeyCombo></Entry>
2875 <Entry>exit <Command>pvm</Command>, leaving it running</Entry>
2876 </Row>
2877
2878 <Row>
2879 <Entry><Command>halt</Command></Entry>
2880 <Entry>kill off this &ldquo;parallel machine&rdquo; &amp; exit</Entry>
2881 </Row>
2882
2883 <Row>
2884 <Entry><Command>add &lt;host&gt;</Command></Entry>
2885 <Entry>add <Command>&lt;host&gt;</Command> as a processor</Entry>
2886 </Row>
2887
2888 <Row>
2889 <Entry><Command>delete &lt;host&gt;</Command></Entry>
2890 <Entry>delete <Command>&lt;host&gt;</Command></Entry>
2891 </Row>
2892
2893 <Row>
2894 <Entry><Command>reset</Command></Entry>
2895 <Entry>kill what's going, but leave PVM up</Entry>
2896 </Row>
2897
2898 <Row>
2899 <Entry><Command>conf</Command></Entry>
2900 <Entry>list the current configuration</Entry>
2901 </Row>
2902
2903 <Row>
2904 <Entry><Command>ps</Command></Entry>
2905 <Entry>report processes' status</Entry>
2906 </Row>
2907
2908 <Row>
2909 <Entry><Command>pstat &lt;pid&gt;</Command></Entry>
2910 <Entry>status of a particular process</Entry>
2911 </Row>
2912
2913 </TBody>
2914 </TGroup>
2915 </InformalTable>
2916 </Para>
2917
2918 <Para>
2919 The PVM documentation can tell you much, much more about <Command>pvm</Command>!
2920 </Para>
2921
2922 </Sect2>
2923
2924 <Sect2>
2925 <Title>Parallelism profiles</Title>
2926
2927 <Para>
2928 <IndexTerm><Primary>parallelism profiles</Primary></IndexTerm>
2929 <IndexTerm><Primary>profiles, parallelism</Primary></IndexTerm>
2930 <IndexTerm><Primary>visualisation tools</Primary></IndexTerm>
2931 </Para>
2932
2933 <Para>
2934 With Parallel Haskell programs, we usually don't care about the
2935 results&mdash;only with &ldquo;how parallel&rdquo; it was!  We want pretty pictures.
2936 </Para>
2937
2938 <Para>
2939 Parallelism profiles (&agrave; la <Command>hbcpp</Command>) can be generated with the
2940 <Option>-q</Option><IndexTerm><Primary>-q RTS option (concurrent, parallel)</Primary></IndexTerm> RTS option.  The
2941 per-processor profiling info is dumped into files named
2942 <Filename>&lt;full-path&gt;&lt;program&gt;.gr</Filename>.  These are then munged into a PostScript picture,
2943 which you can then display.  For example, to run your program
2944 <Filename>a.out</Filename> on 8 processors, then view the parallelism profile, do:
2945 </Para>
2946
2947 <Para>
2948
2949 <Screen>
2950 % ./a.out +RTS -N8 -q
2951 % grs2gr *.???.gr &#62; temp.gr     # combine the 8 .gr files into one
2952 % gr2ps -O temp.gr              # cvt to .ps; output in temp.ps
2953 % ghostview -seascape temp.ps   # look at it!
2954 </Screen>
2955
2956 </Para>
2957
2958 <Para>
2959 The scripts for processing the parallelism profiles are distributed
2960 in <Filename>ghc/utils/parallel/</Filename>.
2961 </Para>
2962
2963 </Sect2>
2964
2965 <Sect2>
2966 <Title>Other useful info about running parallel programs</Title>
2967
2968 <Para>
2969 The &ldquo;garbage-collection statistics&rdquo; RTS options can be useful for
2970 seeing what parallel programs are doing.  If you do either
2971 <Option>+RTS -Sstderr</Option><IndexTerm><Primary>-Sstderr RTS option</Primary></IndexTerm> or <Option>+RTS -sstderr</Option>, then
2972 you'll get mutator, garbage-collection, etc., times on standard
2973 error. The standard error of all PE's other than the `main thread'
2974 appears in <Filename>/tmp/pvml.nnn</Filename>, courtesy of PVM.
2975 </Para>
2976
2977 <Para>
2978 Whether doing <Option>+RTS -Sstderr</Option> or not, a handy way to watch
2979 what's happening overall is: <Command>tail -f /tmp/pvml.nnn</Command>.
2980 </Para>
2981
2982 </Sect2>
2983
2984 <Sect2 id="parallel-rts-opts">
2985 <Title>RTS options for Concurrent/Parallel Haskell
2986 </Title>
2987
2988 <Para>
2989 <IndexTerm><Primary>RTS options, concurrent</Primary></IndexTerm>
2990 <IndexTerm><Primary>RTS options, parallel</Primary></IndexTerm>
2991 <IndexTerm><Primary>Concurrent Haskell&mdash;RTS options</Primary></IndexTerm>
2992 <IndexTerm><Primary>Parallel Haskell&mdash;RTS options</Primary></IndexTerm>
2993 </Para>
2994
2995 <Para>
2996 Besides the usual runtime system (RTS) options
2997 (<XRef LinkEnd="runtime-control">), there are a few options particularly
2998 for concurrent/parallel execution.
2999 </Para>
3000
3001 <Para>
3002 <VariableList>
3003
3004 <VarListEntry>
3005 <Term><Option>-N&lt;N&gt;</Option>:</Term>
3006 <ListItem>
3007 <Para>
3008 <IndexTerm><Primary>-N&lt;N&gt; RTS option (parallel)</Primary></IndexTerm>
3009 (PARALLEL ONLY) Use <Literal>&lt;N&gt;</Literal> PVM processors to run this program;
3010 the default is 2.
3011 </Para>
3012 </ListItem>
3013 </VarListEntry>
3014 <VarListEntry>
3015 <Term><Option>-C[&lt;us&gt;]</Option>:</Term>
3016 <ListItem>
3017 <Para>
3018 <IndexTerm><Primary>-C&lt;us&gt; RTS option</Primary></IndexTerm> Sets
3019 the context switch interval to <Literal>&lt;s&gt;</Literal> seconds.
3020 A context switch will occur at the next heap block allocation after
3021 the timer expires (a heap block allocation occurs every 4k of
3022 allocation).  With <Option>-C0</Option> or <Option>-C</Option>,
3023 context switches will occur as often as possible (at every heap block
3024 allocation).  By default, context switches occur every 20ms
3025 milliseconds.  Note that GHC's internal timer ticks every 20ms, and
3026 the context switch timer is always a multiple of this timer, so 20ms
3027 is the maximum granularity available for timed context switches.
3028 </Para>
3029 </ListItem>
3030 </VarListEntry>
3031 <VarListEntry>
3032 <Term><Option>-q[v]</Option>:</Term>
3033 <ListItem>
3034 <Para>
3035 <IndexTerm><Primary>-q RTS option</Primary></IndexTerm>
3036 (PARALLEL ONLY) Produce a quasi-parallel profile of thread activity,
3037 in the file <FIlename>&lt;program&gt;.qp</FIlename>.  In the style of <Command>hbcpp</Command>, this profile
3038 records the movement of threads between the green (runnable) and red
3039 (blocked) queues.  If you specify the verbose suboption (<Option>-qv</Option>), the
3040 green queue is split into green (for the currently running thread
3041 only) and amber (for other runnable threads).  We do not recommend
3042 that you use the verbose suboption if you are planning to use the
3043 <Command>hbcpp</Command> profiling tools or if you are context switching at every heap
3044 check (with <Option>-C</Option>).
3045 </Para>
3046 </ListItem>
3047 </VarListEntry>
3048 <VarListEntry>
3049 <Term><Option>-t&lt;num&gt;</Option>:</Term>
3050 <ListItem>
3051 <Para>
3052 <IndexTerm><Primary>-t&lt;num&gt; RTS option</Primary></IndexTerm>
3053 (PARALLEL ONLY) Limit the number of concurrent threads per processor
3054 to <Literal>&lt;num&gt;</Literal>.  The default is 32.  Each thread requires slightly over 1K
3055 <Emphasis>words</Emphasis> in the heap for thread state and stack objects.  (For
3056 32-bit machines, this translates to 4K bytes, and for 64-bit machines,
3057 8K bytes.)
3058 </Para>
3059 </ListItem>
3060 </VarListEntry>
3061 <VarListEntry>
3062 <Term><Option>-d</Option>:</Term>
3063 <ListItem>
3064 <Para>
3065 <IndexTerm><Primary>-d RTS option (parallel)</Primary></IndexTerm>
3066 (PARALLEL ONLY) Turn on debugging.  It pops up one xterm (or GDB, or
3067 something&hellip;) per PVM processor.  We use the standard <Command>debugger</Command>
3068 script that comes with PVM3, but we sometimes meddle with the
3069 <Command>debugger2</Command> script.  We include ours in the GHC distribution,
3070 in <Filename>ghc/utils/pvm/</Filename>.
3071 </Para>
3072 </ListItem>
3073 </VarListEntry>
3074 <VarListEntry>
3075 <Term><Option>-e&lt;num&gt;</Option>:</Term>
3076 <ListItem>
3077 <Para>
3078 <IndexTerm><Primary>-e&lt;num&gt; RTS option (parallel)</Primary></IndexTerm>
3079 (PARALLEL ONLY) Limit the number of pending sparks per processor to
3080 <Literal>&lt;num&gt;</Literal>. The default is 100. A larger number may be appropriate if
3081 your program generates large amounts of parallelism initially.
3082 </Para>
3083 </ListItem>
3084 </VarListEntry>
3085 <VarListEntry>
3086 <Term><Option>-Q&lt;num&gt;</Option>:</Term>
3087 <ListItem>
3088 <Para>
3089 <IndexTerm><Primary>-Q&lt;num&gt; RTS option (parallel)</Primary></IndexTerm>
3090 (PARALLEL ONLY) Set the size of packets transmitted between processors
3091 to <Literal>&lt;num&gt;</Literal>. The default is 1024 words. A larger number may be
3092 appropriate if your machine has a high communication cost relative to
3093 computation speed.
3094 </Para>
3095 </ListItem>
3096 </VarListEntry>
3097 </VariableList>
3098 </Para>
3099
3100 </Sect2>
3101
3102 </Sect1>
3103
3104 &runtime
3105 &debug
3106
3107 </Chapter>
3108
3109 <!-- Emacs stuff:
3110      ;;; Local Variables: ***
3111      ;;; mode: sgml ***
3112      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
3113      ;;; End: ***
3114  -->