Add a warning for tabs in source files
[ghc-hetmet.git] / docs / users_guide / flags.xml
1 <?xml version="1.0" encoding="iso-8859-1"?>
2   <sect1 id="flag-reference">
3     <title>Flag reference</title>
4
5     <para>This section is a quick-reference for GHC's command-line
6     flags.  For each flag, we also list its static/dynamic status (see
7     <xref linkend="static-dynamic-flags"/>), and the flag's opposite
8     (if available).</para>
9
10     <sect2>
11       <title>Help and verbosity options</title>
12
13       <para><xref linkend="options-help"/></para>
14
15       <informaltable>
16         <tgroup cols="4" align="left" colsep="1" rowsep="1">
17           <thead>
18             <row>
19               <entry>Flag</entry>
20               <entry>Description</entry>
21               <entry>Static/Dynamic</entry>
22               <entry>Reverse</entry>
23             </row>
24           </thead>
25           <tbody>
26             <row>
27               <entry><option>-?</option></entry>
28               <entry>help</entry>
29               <entry>mode</entry>
30               <entry>-</entry>
31             </row>
32             <row>
33               <entry><option>-help</option></entry>
34               <entry>help</entry>
35               <entry>mode</entry>
36               <entry>-</entry>
37             </row>
38             <row>
39               <entry><option>-n</option></entry>
40               <entry>do a dry run</entry>
41               <entry>dynamic</entry>
42               <entry>-</entry>
43             </row>
44             <row>
45               <entry><option>-v</option></entry>
46               <entry>verbose mode (equivalent to <option>-v3</option>)</entry>
47               <entry>dynamic</entry>
48               <entry>-</entry>
49             </row>
50             <row>
51               <entry><option>-v</option><replaceable>n</replaceable></entry>
52               <entry>set verbosity level</entry>
53               <entry>dynamic</entry>
54               <entry>-</entry>
55             </row>
56             <row>
57               <entry><option>-V</option></entry>
58               <entry>display GHC version</entry>
59               <entry>mode</entry>
60               <entry>-</entry>
61             </row>
62             <row>
63               <entry><option>&ndash;&ndash;version</option></entry>
64               <entry>display GHC version</entry>
65               <entry>mode</entry>
66               <entry>-</entry>
67             </row>
68             <row>
69               <entry><option>&ndash;&ndash;numeric-version</option></entry>
70               <entry>display GHC version (numeric only)</entry>
71               <entry>mode</entry>
72               <entry>-</entry>
73             </row>
74             <row>
75               <entry><option>&ndash;&ndash;print-libdir</option></entry>
76               <entry>display GHC library directory</entry>
77               <entry>mode</entry>
78               <entry>-</entry>
79             </row>
80             <row>
81               <entry><option>-ferror-spans</option></entry>
82               <entry>output full span in error messages</entry>
83               <entry>static</entry>
84               <entry>-</entry>
85             </row>
86             <row>
87               <entry><option>-H</option><replaceable>size</replaceable></entry>
88               <entry>Set the minimum heap size to <replaceable>size</replaceable></entry>
89               <entry>static</entry>
90               <entry>-</entry>
91             </row>
92             <row>
93               <entry><option>-Rghc-timing</option></entry>
94               <entry>Summarise timing stats for GHC (same as <literal>+RTS -tstderr</literal>)</entry>
95               <entry>static</entry>
96               <entry>-</entry>
97             </row>
98           </tbody>
99         </tgroup>
100       </informaltable>
101
102     </sect2>
103     <sect2>
104       <title>Which phases to run</title>
105       
106       <para><xref linkend="options-order"/></para>
107
108       <informaltable>
109         <tgroup cols="4" align="left" colsep="1" rowsep="1">
110           <thead>
111             <row>
112               <entry>Flag</entry>
113               <entry>Description</entry>
114               <entry>Static/Dynamic</entry>
115               <entry>Reverse</entry>
116             </row>
117           </thead>
118           <tbody>
119             <row>
120               <entry><option>-E</option></entry>
121               <entry>Stop after preprocessing (<literal>.hspp</literal> file)</entry>
122               <entry>mode</entry>
123               <entry>-</entry>
124             </row>
125             <row>
126               <entry><option>-C</option></entry>
127               <entry>Stop after generating C (<literal>.hc</literal> file)</entry>
128               <entry>mode</entry>
129               <entry>-</entry>
130             </row>
131             <row>
132               <entry><option>-S</option></entry>
133               <entry>Stop after generating assembly (<literal>.s</literal> file)</entry>
134               <entry>mode</entry>
135               <entry>-</entry>
136             </row>
137             <row>
138               <entry><option>-c</option></entry>
139               <entry>Do not link</entry>
140               <entry>dynamic</entry>
141               <entry>-</entry>
142             </row>
143             <row>
144               <entry><option>-x</option> <replaceable>suffix</replaceable></entry>
145               <entry>Override default behaviour for source files</entry>
146               <entry>static</entry>
147               <entry>-</entry>
148             </row>
149           </tbody>
150         </tgroup>
151       </informaltable>
152     </sect2>
153
154      <sect2>
155       <title>Alternative modes of operation</title>
156       
157       <para><xref linkend="modes"/></para>
158
159       <informaltable>
160         <tgroup cols="4" align="left" colsep="1" rowsep="1">
161           <thead>
162             <row>
163               <entry>Flag</entry>
164               <entry>Description</entry>
165               <entry>Static/Dynamic</entry>
166               <entry>Reverse</entry>
167             </row>
168           </thead>
169           <tbody>
170             <row>
171               <entry><option>--interactive</option></entry>
172               <entry>Interactive mode - normally used by just running <command>ghci</command></entry>
173               <entry>mode</entry>
174               <entry>-</entry>
175             </row>
176             <row>
177               <entry><option>--make</option></entry>
178               <entry>Build a multi-module Haskell program, automatically figuring out dependencies. Likely to be much easier, and faster, than using <command>make</command>.</entry>
179               <entry>mode</entry>
180               <entry>-</entry>
181             </row>
182             <row>
183               <entry><option>-e <replaceable>expr</replaceable></option></entry>
184               <entry>Evaluate <replaceable>expr</replaceable></entry>
185               <entry>mode</entry>
186               <entry>-</entry>
187             </row>
188             <row>
189               <entry><option>-M</option></entry>
190               <entry>Generate dependency information suitable for use in a <filename>Makefile</filename>.</entry>
191               <entry>mode</entry>
192               <entry>-</entry>
193             </row>
194           </tbody>
195         </tgroup>
196       </informaltable>
197     </sect2>
198
199     <sect2>
200       <title>Redirecting output</title>
201       
202       <para><xref linkend="options-output"/></para>
203
204       <informaltable>
205         <tgroup cols="4" align="left" colsep="1" rowsep="1">
206           <thead>
207             <row>
208               <entry>Flag</entry>
209               <entry>Description</entry>
210               <entry>Static/Dynamic</entry>
211               <entry>Reverse</entry>
212             </row>
213           </thead>
214           <tbody>
215             <row>
216               <entry><option>-hcsuf</option> <replaceable>suffix</replaceable></entry>
217               <entry>set the suffix to use for intermediate C files</entry>
218               <entry>dynamic</entry>
219               <entry>-</entry>
220             </row>
221             <row>
222               <entry><option>-hidir</option> <replaceable>dir</replaceable></entry>
223               <entry>set directory for interface files</entry>
224               <entry>dynamic</entry>
225               <entry>-</entry>
226             </row>
227             <row>
228               <entry><option>-hisuf</option> <replaceable>suffix</replaceable></entry>
229               <entry>set the suffix to use for interface files</entry>
230               <entry>dynamic</entry>
231               <entry>-</entry>
232             </row>
233             <row>
234               <entry><option>-o</option> <replaceable>filename</replaceable></entry>
235               <entry>set output filename</entry>
236               <entry>dynamic</entry>
237               <entry>-</entry>
238             </row>
239             <row>
240               <entry><option>-odir</option> <replaceable>dir</replaceable></entry>
241               <entry>set output directory</entry>
242               <entry>dynamic</entry>
243               <entry>-</entry>
244             </row>
245             <row>
246               <entry><option>-ohi</option> <replaceable>filename</replaceable></entry>
247               <entry>set the filename in which to put the interface</entry>
248               <entry>dynamic</entry>
249               <entry></entry>
250             </row>
251             <row>
252               <entry><option>-osuf</option> <replaceable>suffix</replaceable></entry>
253               <entry>set the output file suffix</entry>
254               <entry>dynamic</entry>
255               <entry>-</entry>
256             </row>
257             <row>
258               <entry><option>-stubdir</option> <replaceable>dir</replaceable></entry>
259               <entry>redirect FFi stub files</entry>
260               <entry>dynamic</entry>
261               <entry>-</entry>
262             </row>
263           </tbody>
264         </tgroup>
265       </informaltable>
266     </sect2>
267
268     <sect2>
269       <title>Keeping intermediate files</title>
270       
271       <para><xref linkend="keeping-intermediates"/></para>
272       
273       <informaltable>
274         <tgroup cols="4" align="left" colsep="1" rowsep="1">
275           <thead>
276             <row>
277               <entry>Flag</entry>
278               <entry>Description</entry>
279               <entry>Static/Dynamic</entry>
280               <entry>Reverse</entry>
281             </row>
282           </thead>
283           <tbody>
284             <row>
285               <entry><option>-keep-hc-file</option></entry>
286               <entry>retain intermediate <literal>.hc</literal> files</entry>
287               <entry>dynamic</entry>
288               <entry>-</entry>
289             </row>
290             <row>
291               <entry><option>-keep-s-file</option></entry>
292               <entry>retain intermediate <literal>.s</literal> files</entry>
293               <entry>dynamic</entry>
294               <entry>-</entry>
295             </row>
296             <row>
297               <entry><option>-keep-raw-s-file</option></entry>
298               <entry>retain intermediate <literal>.raw_s</literal> files</entry>
299               <entry>dynamic</entry>
300               <entry>-</entry>
301             </row>
302             <row>
303               <entry><option>-keep-tmp-files</option></entry>
304               <entry>retain all intermediate temporary files</entry>
305               <entry>dynamic</entry>
306               <entry>-</entry>
307             </row>
308           </tbody>
309         </tgroup>
310       </informaltable>
311     </sect2>
312
313     <sect2>
314       <title>Temporary files</title>
315       
316       <para><xref linkend="temp-files"/></para>
317
318       <informaltable>
319         <tgroup cols="4" align="left" colsep="1" rowsep="1">
320           <thead>
321             <row>
322               <entry>Flag</entry>
323               <entry>Description</entry>
324               <entry>Static/Dynamic</entry>
325               <entry>Reverse</entry>
326             </row>
327           </thead>
328           <tbody>
329             <row>
330               <entry><option>-tmpdir</option></entry>
331               <entry>set the directory for temporary files</entry>
332               <entry>dynamic</entry>
333               <entry>-</entry>
334             </row>
335           </tbody>
336         </tgroup>
337       </informaltable>
338     </sect2>
339
340     <sect2>
341       <title>Finding imports</title>
342
343       <para><xref linkend="search-path"/></para>
344
345       <informaltable>
346         <tgroup cols="4" align="left" colsep="1" rowsep="1">
347           <thead>
348             <row>
349               <entry>Flag</entry>
350
351               <entry>Description</entry>
352               <entry>Static/Dynamic</entry>
353               <entry>Reverse</entry>
354             </row>
355           </thead>
356           <tbody>
357             <row>
358               <entry><option>-i</option><replaceable>dir1</replaceable>:<replaceable>dir2</replaceable>:...</entry>
359               <entry>add <replaceable>dir</replaceable>,
360                   <replaceable>dir2</replaceable>, etc. to import path</entry>
361               <entry>dynamic</entry>
362               <entry>-</entry>
363             </row>
364             <row>
365               <entry><option>-i</option></entry>
366               <entry>Empty the import directory list</entry>
367               <entry>dynamic</entry>
368               <entry>-</entry>
369             </row>
370           </tbody>
371         </tgroup>
372       </informaltable>
373     </sect2>
374
375     <sect2>
376       <title>Interface file options</title>
377
378       <para><xref linkend="hi-options"/></para>
379
380       <informaltable>
381         <tgroup cols="4" align="left" colsep="1" rowsep="1">
382           <thead>
383             <row>
384               <entry>Flag</entry>
385
386               <entry>Description</entry>
387               <entry>Static/Dynamic</entry>
388               <entry>Reverse</entry>
389             </row>
390           </thead>
391           <tbody>
392             <row>
393               <entry><option>-ddump-hi</option></entry>
394               <entry>Dump the new interface to stdout</entry>
395               <entry>dynamic</entry>
396               <entry>-</entry>
397             </row>
398             <row>
399               <entry><option>-ddump-hi-diffs</option></entry>
400               <entry>Show the differences vs. the old interface</entry>
401               <entry>dynamic</entry>
402               <entry>-</entry>
403             </row>
404             <row>
405               <entry><option>-ddump-minimal-imports</option></entry>
406               <entry>Dump a minimal set of imports</entry>
407               <entry>dynamic</entry>
408               <entry>-</entry>
409             </row>
410             <row>
411               <entry><option>--show-iface</option> <replaceable>file</replaceable></entry>
412               <entry>Read the interface in
413               <replaceable>file</replaceable> and dump it as text to
414               <literal>stdout</literal>.</entry>
415               <entry>mode</entry>
416               <entry>-</entry>
417             </row>
418           </tbody>
419         </tgroup>
420       </informaltable>
421     </sect2>
422     
423     <sect2>
424       <title>Recompilation checking</title>
425
426       <para><xref linkend="recomp"/></para>
427
428       <informaltable>
429         <tgroup cols="4" align="left" colsep="1" rowsep="1">
430           <thead>
431             <row>
432               <entry>Flag</entry>
433
434               <entry>Description</entry>
435               <entry>Static/Dynamic</entry>
436               <entry>Reverse</entry>
437             </row>
438           </thead>
439           <tbody>
440             <row>
441               <entry><option>-fforce-recomp</option></entry>
442               <entry>Turn off recompilation checking; implied by any
443               <option>-ddump-X</option> option</entry>
444               <entry>dynamic</entry>
445               <entry><option>-fno-force-recomp</option></entry>
446             </row>
447           </tbody>
448         </tgroup>
449       </informaltable>
450     </sect2>
451
452     <sect2>
453       <title>Interactive-mode options</title>
454       
455       <para><xref linkend="ghci-dot-files"/></para>
456
457       <informaltable>
458         <tgroup cols="4" align="left" colsep="1" rowsep="1">
459           <thead>
460             <row>
461               <entry>Flag</entry>
462               <entry>Description</entry>
463               <entry>Static/Dynamic</entry>
464               <entry>Reverse</entry>
465             </row>
466           </thead>
467           <tbody>
468             <row>
469               <entry><option>-ignore-dot-ghci</option></entry>
470               <entry>Disable reading of <filename>.ghci</filename> files</entry>
471               <entry>static</entry>
472               <entry>-</entry>
473             </row>
474             <row>
475               <entry><option>-read-dot-ghci</option></entry>
476               <entry>Enable reading of <filename>.ghci</filename> files</entry>
477               <entry>static</entry>
478               <entry>-</entry>
479             </row>
480             <row>
481               <entry><option>-fdebugging</option></entry>
482               <entry>Generate bytecode enabled for debugging</entry>
483               <entry>dynamic</entry>
484               <entry>-</entry>
485             </row>
486             <row>
487               <entry><option>-fno-debugging</option></entry>
488               <entry>Do not include debugging information in bytecodes</entry>
489               <entry>dynamic</entry>
490               <entry>-</entry>
491             </row>
492           </tbody>
493         </tgroup>
494       </informaltable>
495     </sect2>
496
497     <sect2>
498       <title>Packages</title>
499
500       <para><xref linkend="packages"/></para>
501
502       <informaltable>
503         <tgroup cols="4" align="left" colsep="1" rowsep="1">
504           <thead>
505             <row>
506               <entry>Flag</entry>
507               <entry>Description</entry>
508               <entry>Static/Dynamic</entry>
509               <entry>Reverse</entry>
510             </row>
511           </thead>
512           <tbody>
513             <row>
514               <entry><option>-package-name</option> <replaceable>P</replaceable></entry>
515               <entry>Compile to be part of package <replaceable>P</replaceable></entry>
516               <entry>dynamic</entry>
517               <entry>-</entry>
518             </row>
519             <row>
520               <entry><option>-package</option> <replaceable>P</replaceable></entry>
521               <entry>Expose package <replaceable>P</replaceable></entry>
522               <entry>dynamic</entry>
523               <entry>-</entry>
524             </row>
525             <row>
526               <entry><option>-hide-all-packages</option></entry>
527               <entry>Hide all packages by default</entry>
528               <entry>static</entry>
529               <entry>-</entry>
530             </row>
531             <row>
532               <entry><option>-hide-package</option> <replaceable>name</replaceable></entry>
533               <entry>Hide package <replaceable>P</replaceable></entry>
534               <entry>dynamic</entry>
535               <entry>-</entry>
536             </row>
537             <row>
538               <entry><option>-ignore-package</option> <replaceable>name</replaceable></entry>
539               <entry>Ignore package <replaceable>P</replaceable></entry>
540               <entry>dynamic</entry>
541               <entry>-</entry>
542             </row>
543             <row>
544               <entry><option>-package-conf</option> <replaceable>file</replaceable></entry>
545               <entry>Load more packages from <replaceable>file</replaceable></entry>
546               <entry>dynamic</entry>
547               <entry>-</entry>
548             </row>
549             <row>
550               <entry><option>-no-user-package-conf</option></entry>
551               <entry>Don't load the user's package config file.</entry>
552               <entry>dynamic</entry>
553               <entry>-</entry>
554             </row>
555           </tbody>
556         </tgroup>
557       </informaltable>
558     </sect2>
559
560     <sect2>
561       <title>Language options</title>
562
563       <para><xref linkend="options-language"/></para>
564
565       <informaltable>
566         <tgroup cols="4" align="left" colsep="1" rowsep="1">
567           <thead>
568             <row>
569               <entry>Flag</entry>
570               <entry>Description</entry>
571               <entry>Static/Dynamic</entry>
572               <entry>Reverse</entry>
573             </row>
574           </thead>
575           <tbody>
576             <row>
577               <entry><option>-fallow-overlapping-instances</option></entry>
578               <entry>Enable <link linkend="instance-overlap">overlapping instances</link></entry>
579               <entry>dynamic</entry>
580               <entry><option>-fno-allow-overlapping-instances</option></entry>
581             </row>
582             <row>
583               <entry><option>-fallow-incoherent-instances</option></entry>
584               <entry>Enable <link linkend="instance-overlap">incoherent instances</link>.  
585               Implies <option>-fallow-overlapping-instances</option> </entry>
586               <entry>dynamic</entry>
587               <entry><option>-fno-allow-incoherent-instances</option></entry>
588             </row>
589             <row>
590               <entry><option>-fallow-undecidable-instances</option></entry>
591               <entry>Enable <link linkend="undecidable-instances">undecidable instances</link></entry>
592               <entry>dynamic</entry>
593               <entry><option>-fno-allow-undecidable-instances</option></entry>
594             </row>
595             <row>
596               <entry><option>-fcontext-stack=N</option><replaceable>n</replaceable></entry>
597               <entry>set the <link linkend="undecidable-instances">limit for context reduction</link></entry>
598               <entry>dynamic</entry>
599               <entry><option>20</option></entry>
600             </row>
601             <row>
602               <entry><option>-farrows</option></entry>
603               <entry>Enable <link linkend="arrow-notation">arrow
604               notation</link> extension</entry>
605               <entry>dynamic</entry>
606               <entry><option>-fno-arrows</option></entry>
607             </row>
608             <row>
609               <entry><option>-ffi</option> or <option>-fffi</option></entry>
610               <entry>Enable <link linkend="ffi">foreign function interface</link> (implied by
611               <option>-fglasgow-exts</option>)</entry>
612               <entry>dynamic</entry>
613               <entry><option>-fno-ffi</option></entry>
614             </row>
615             <row>
616               <entry><option>-fgenerics</option></entry>
617               <entry>Enable <link linkend="generic-classes">generic classes</link></entry>
618               <entry>dynamic</entry>
619               <entry><option>-fno-fgenerics</option></entry>
620             </row>
621             <row>
622               <entry><option>-fglasgow-exts</option></entry>
623               <entry>Enable most language extensions</entry>
624               <entry>dynamic</entry>
625               <entry><option>-fno-glasgow-exts</option></entry>
626             </row>
627             <row>
628               <entry><option>-fimplicit-params</option></entry>
629               <entry>Enable <link linkend="implicit-parameters">Implicit Parameters</link>.
630               Implied by <option>-fglasgow-exts</option>.</entry>
631               <entry>dynamic</entry>
632               <entry><option>-fno-implicit-params</option></entry>
633             </row>
634             <row>
635               <entry><option>-firrefutable-tuples</option></entry>
636               <entry>Make tuple pattern matching irrefutable</entry>
637               <entry>dynamic</entry>
638               <entry><option>-fno-irrefutable-tuples</option></entry>
639             </row>
640             <row>
641               <entry><option>-fno-implicit-prelude</option></entry>
642               <entry>Don't implicitly <literal>import Prelude</literal></entry>
643               <entry>dynamic</entry>
644               <entry><option>-fimplicit-prelude</option></entry>
645             </row>
646             <row>
647               <entry><option>-fno-monomorphism-restriction</option></entry>
648               <entry>Disable the <link linkend="monomorphism">monomorphism restriction</link></entry>
649               <entry>dynamic</entry>
650               <entry><option>-fmonomorphism-restriction</option></entry>
651             </row>
652             <row>
653               <entry><option>-fno-mono-pat-binds</option></entry>
654               <entry>Make <link linkend="monomorphism">pattern bindings polymorphic</link></entry>
655               <entry>dynamic</entry>
656               <entry><option>-fmono-pat-binds</option></entry>
657             </row>
658             <row>
659               <entry><option>-fextended-default-rules</option></entry>
660               <entry>Use GHCi's <link linkend="extended-default-rules">extended default rules</link> in a normal module</entry>
661               <entry>dynamic</entry>
662               <entry><option>-fno-extended-default-rules</option></entry>
663             </row>
664             <row>
665               <entry><option>-fscoped-type-variables</option></entry>
666               <entry>Enable <link linkend="scoped-type-variables">lexically-scoped type variables</link>.
667               Implied by <option>-fglasgow-exts</option>.</entry>
668               <entry>dynamic</entry>
669               <entry><option>-fno-scoped-type-variables</option></entry>
670             </row>
671             <row>
672               <entry><option>-fth</option></entry>
673               <entry>Enable <link linkend="template-haskell">Template Haskell</link>. 
674                 No longer implied by <option>-fglasgow-exts</option>.</entry>
675               <entry>dynamic</entry>
676               <entry><option>-fno-th</option></entry>
677             </row>
678             <row>
679               <entry><option>-fbang-patterns</option></entry>
680               <entry>Enable <link linkend="sec-bang-patterns">bang patterns</link>.</entry>
681               <entry>dynamic</entry>
682               <entry><option>-fno-bang-patterns</option></entry>
683             </row>
684           </tbody>
685         </tgroup>
686       </informaltable>
687     </sect2>
688
689     <sect2>
690       <title>Warnings</title>
691       
692       <para><xref linkend="options-sanity"/></para>
693
694     <informaltable>
695       <tgroup cols="4" align="left" colsep="1" rowsep="1">
696         <thead>
697           <row>
698             <entry>Flag</entry>
699             <entry>Description</entry>
700             <entry>Static/Dynamic</entry>
701             <entry>Reverse</entry>
702           </row>
703         </thead>
704         <tbody>
705           <row>
706             <entry><option>-W</option></entry>
707             <entry>enable normal warnings</entry>
708             <entry>dynamic</entry>
709             <entry><option>-w</option></entry>
710           </row>
711           <row>
712             <entry><option>-w</option></entry>
713             <entry>disable all warnings</entry>
714             <entry>dynamic</entry>
715             <entry>-</entry>
716           </row>
717           <row>
718             <entry><option>-Wall</option></entry>
719             <entry>enable all warnings</entry>
720             <entry>dynamic</entry>
721             <entry><option>-w</option></entry>
722           </row>
723           <row>
724             <entry><option>-Werror</option></entry>
725             <entry>make warnings fatal</entry>
726             <entry>dynamic</entry>
727             <entry></entry>
728           </row>
729
730           <row>
731             <entry><option>-fwarn-deprecations</option></entry>
732             <entry>warn about uses of functions &amp; types that are deprecated</entry>
733             <entry>dynamic</entry>
734             <entry><option>-fno-warn-deprecations</option></entry>
735           </row>
736
737           <row>
738             <entry><option>-fwarn-duplicate-exports</option></entry>
739             <entry>warn when an entity is exported multiple times</entry>
740             <entry>dynamic</entry>
741             <entry><option>-fno-warn-duplicate-exports</option></entry>
742           </row>
743
744           <row>
745             <entry><option>-fwarn-hi-shadowing</option></entry>
746             <entry>warn when a <literal>.hi</literal> file in the
747             current directory shadows a library</entry>
748             <entry>dynamic</entry>
749             <entry><option>-fno-warn-hi-shadowing</option></entry>
750           </row>
751
752           <row>
753             <entry><option>-fwarn-incomplete-patterns</option></entry>
754             <entry>warn when a pattern match could fail</entry>
755             <entry>dynamic</entry>
756             <entry><option>-fno-warn-incomplete-patterns</option></entry>
757           </row>
758
759           <row>
760             <entry><option>-fwarn-incomplete-record-updates</option></entry>
761             <entry>warn when a record update could fail</entry>
762             <entry>dynamic</entry>
763             <entry><option>-fno-warn-incomplete-record-updates</option></entry>
764           </row>
765
766           <row>
767             <entry><option>-fwarn-missing-fields</option></entry>
768             <entry>warn when fields of a record are uninitialised</entry>
769             <entry>dynamic</entry>
770             <entry><option>-fno-warn-missing-fields</option></entry>
771           </row>
772
773           <row>
774             <entry><option>-fwarn-missing-methods</option></entry>
775             <entry>warn when class methods are undefined</entry>
776             <entry>dynamic</entry>
777             <entry><option>-fno-warn-missing-methods</option></entry>
778           </row>
779
780           <row>
781             <entry><option>-fwarn-missing-signatures</option></entry>
782             <entry>warn about top-level functions without signatures</entry>
783             <entry>dynamic</entry>
784             <entry><option>-fno-warn-missing-signatures</option></entry>
785           </row>
786
787           <row>
788             <entry><option>-fwarn-name-shadowing</option></entry>
789             <entry>warn when names are shadowed</entry>
790             <entry>dynamic</entry>
791             <entry><option>-fno-warn-name-shadowing</option></entry>
792           </row>
793
794           <row>
795             <entry><option>-fwarn-orphans</option></entry>
796             <entry>warn when the module contains "orphan" instance declarations
797             or rewrite rules</entry>
798             <entry>dynamic</entry>
799             <entry><option>-fno-warn-orphans</option></entry>
800           </row>
801
802           <row>
803             <entry><option>-fwarn-overlapping-patterns</option></entry>
804             <entry>warn about overlapping patterns</entry>
805             <entry>dynamic</entry>
806             <entry><option>-fno-warn-overlapping-patterns</option></entry>
807           </row>
808
809           <row>
810             <entry><option>-fwarn-simple-patterns</option></entry>
811             <entry>warn about lambda-patterns that can fail</entry>
812             <entry>dynamic</entry>
813             <entry><option>-fno-warn-simple-patterns</option></entry>
814           </row>
815
816           <row>
817             <entry><option>-fwarn-tabs</option></entry>
818             <entry>warn if there are tabs in the source file</entry>
819             <entry>dynamic</entry>
820             <entry><option>-fno-warn-tabs</option></entry>
821           </row>
822
823           <row>
824             <entry><option>-fwarn-type-defaults</option></entry>
825             <entry>warn when defaulting happens</entry>
826             <entry>dynamic</entry>
827             <entry><option>-fno-warn-type-defaults</option></entry>
828           </row>
829
830           <row>
831             <entry><option>-fwarn-unused-binds</option></entry>
832             <entry>warn about bindings that are unused</entry>
833             <entry>dynamic</entry>
834             <entry><option>-fno-warn-unused-binds</option></entry>
835           </row>
836
837           <row>
838             <entry><option>-fwarn-unused-imports</option></entry>
839             <entry>warn about unnecessary imports</entry>
840             <entry>dynamic</entry>
841             <entry><option>-fno-warn-unused-imports</option></entry>
842           </row>
843
844           <row>
845             <entry><option>-fwarn-unused-matches</option></entry>
846             <entry>warn about variables in patterns that aren't used</entry>
847             <entry>dynamic</entry>
848             <entry><option>-fno-warn-unused-matches</option></entry>
849           </row>
850
851           </tbody>
852         </tgroup>
853       </informaltable>
854
855     </sect2>
856     <sect2>
857       <title>Optimisation levels</title>
858
859       <para><xref linkend="options-optimise"/></para>
860
861       <informaltable>
862         <tgroup cols="4" align="left" colsep="1" rowsep="1">
863           <thead>
864             <row>
865               <entry>Flag</entry>
866               <entry>Description</entry>
867               <entry>Static/Dynamic</entry>
868               <entry>Reverse</entry>
869             </row>
870           </thead>
871           <tbody>
872             <row>
873               <entry><option>-O</option></entry>
874               <entry>Enable default optimisation (level 1)</entry>
875               <entry>dynamic</entry>
876               <entry><option>-O0</option></entry>
877             </row>
878             <row>
879               <entry><option>-O</option><replaceable>n</replaceable></entry>
880               <entry>Set optimisation level <replaceable>n</replaceable></entry>
881               <entry>dynamic</entry>
882               <entry><option>-O0</option></entry>
883             </row>
884           </tbody>
885         </tgroup>
886       </informaltable>
887               
888     </sect2>
889     <sect2>
890       <title>Individual optimisations</title>
891
892       <para><xref linkend="options-f"/></para>
893
894       <informaltable>
895         <tgroup cols="4" align="left" colsep="1" rowsep="1">
896           <thead>
897             <row>
898               <entry>Flag</entry>
899               <entry>Description</entry>
900               <entry>Static/Dynamic</entry>
901               <entry>Reverse</entry>
902             </row>
903           </thead>
904           <tbody>
905             <row>
906               <entry><option>-fcase-merge</option></entry>
907               <entry>Enable case-merging</entry>
908               <entry>dynamic</entry>
909               <entry><option>-fno-case-merge</option></entry>
910             </row>
911
912             <row>
913               <entry><option>-fdicts-strict</option></entry>
914               <entry>Make dictionaries strict</entry>
915               <entry>static</entry>
916               <entry><option>-fno-dicts-strict</option></entry>
917             </row>
918
919             <row>
920               <entry><option>-fdo-eta-reduction</option></entry>
921               <entry>Enable eta-reduction</entry>
922               <entry>dynamic</entry>
923               <entry><option>-fno-do-eta-reduction</option></entry>
924             </row>
925
926             <row>
927               <entry><option>-fdo-lambda-eta-expansion</option></entry>
928               <entry>Enable lambda eta-reduction</entry>
929               <entry>dynamic</entry>
930               <entry><option>-fno-do-lambda-eta-expansion</option></entry>
931             </row>
932
933             <row>
934               <entry><option>-fexcess-precision</option></entry>
935               <entry>Enable excess intermediate precision</entry>
936               <entry>dynamic</entry>
937               <entry><option>-fno-excess-precision</option></entry>
938             </row>
939
940             <row>
941               <entry><option>-frules-off</option></entry>
942               <entry>Switch off all rewrite rules (including rules
943               generated by automatic specialisation of overloaded functions)</entry>
944               <entry>static</entry>
945               <entry><option>-frules-off</option></entry>
946             </row>
947
948             <row>
949               <entry><option>-fignore-asserts</option></entry>
950               <entry>Ignore assertions in the source</entry>
951               <entry>dynamic</entry>
952               <entry><option>-fno-ignore-asserts</option></entry>
953             </row>
954
955             <row>
956               <entry><option>-fignore-interface-pragmas</option></entry>
957               <entry>Ignore pragmas in interface files</entry>
958               <entry>dynamic</entry>
959               <entry><option>-fno-ignore-interface-pragmas</option></entry>
960             </row>
961
962             <row>
963               <entry><option>-fliberate-case-threshold</option></entry>
964               <entry>Tweak the liberate-case optimisation (default: 10)</entry>
965               <entry>static</entry>
966               <entry><option>-fno-liberate-case-threshold</option></entry>
967             </row>
968
969             <row>
970               <entry><option>-fomit-interface-pragmas</option></entry>
971               <entry>Don't generate interface pragmas</entry>
972               <entry>dynamic</entry>
973               <entry><option>-fno-omit-interface-pragmas</option></entry>
974             </row>
975
976             <row>
977               <entry><option>-fmax-worker-args</option></entry>
978               <entry>If a worker has that many arguments, none will be
979                 unpacked anymore (default: 10)</entry>
980               <entry>static</entry>
981               <entry>-</entry>
982             </row>
983
984             <row>
985               <entry><option>-fmax-simplifier-iterations</option></entry>
986               <entry>Set the max iterations for the simplifier</entry>
987               <entry>dynamic</entry>
988               <entry>-</entry>
989             </row>
990
991             <row>
992               <entry><option>-fno-state-hack</option></entry>
993               <entry>Turn off the "state hack" whereby any lambda with a real-world state token
994               as argument is considered to be single-entry.  Hence OK to inline things inside it.</entry>
995               <entry>static</entry>
996               <entry>-</entry>
997             </row>
998
999             <row>
1000               <entry><option>-fno-cse</option></entry>
1001               <entry>Turn off common sub-expression</entry>
1002               <entry>dynamic</entry>
1003               <entry>-</entry>
1004             </row>
1005
1006             <row>
1007               <entry><option>-fno-full-laziness</option></entry>
1008               <entry>Turn off full laziness (floating bindings outwards).</entry>
1009               <entry>dynamic</entry>
1010               <entry>-ffull-laziness</entry>
1011             </row>
1012
1013             <row>
1014               <entry><option>-fno-pre-inlining</option></entry>
1015               <entry>Turn off pre-inlining</entry>
1016               <entry>static</entry>
1017               <entry>-</entry>
1018             </row>
1019
1020             <row>
1021               <entry><option>-fno-strictness</option></entry>
1022               <entry>Turn off strictness analysis</entry>
1023               <entry>dynamic</entry>
1024               <entry>-</entry>
1025             </row>
1026
1027             <row>
1028               <entry><option>-funbox-strict-fields</option></entry>
1029               <entry>Flatten strict constructor fields</entry>
1030               <entry>dynamic</entry>
1031               <entry><option>-fno-unbox-strict-fields</option></entry>
1032             </row>
1033
1034             <row>
1035               <entry><option>-funfolding-creation-threshold</option></entry>
1036               <entry>Tweak unfolding settings</entry>
1037               <entry>static</entry>
1038               <entry><option>-fno-unfolding-creation-threshold</option></entry>
1039             </row>
1040
1041             <row>
1042               <entry><option>-funfolding-fun-discount</option></entry>
1043               <entry>Tweak unfolding settings</entry>
1044               <entry>static</entry>
1045               <entry><option>-fno-unfolding-fun-discount</option></entry>
1046             </row>
1047
1048             <row>
1049               <entry><option>-funfolding-keeness-factor</option></entry>
1050               <entry>Tweak unfolding settings</entry>
1051               <entry>static</entry>
1052               <entry><option>-fno-unfolding-keeness-factor</option></entry>
1053             </row>
1054
1055             <row>
1056               <entry><option>-funfolding-update-in-place</option></entry>
1057               <entry>Tweak unfolding settings</entry>
1058               <entry>static</entry>
1059               <entry><option>-fno-unfolding-update-in-place</option></entry>
1060             </row>
1061
1062             <row>
1063               <entry><option>-funfolding-use-threshold</option></entry>
1064               <entry>Tweak unfolding settings</entry>
1065               <entry>static</entry>
1066               <entry><option>-fno-unfolding-use-threshold</option></entry>
1067             </row>
1068           </tbody>
1069         </tgroup>
1070       </informaltable>
1071     </sect2>
1072
1073     <sect2>
1074       <title>Profiling options</title>
1075       
1076       <para><xref linkend="profiling"/></para>
1077
1078       <informaltable>
1079         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1080           <thead>
1081             <row>
1082               <entry>Flag</entry>
1083               <entry>Description</entry>
1084               <entry>Static/Dynamic</entry>
1085               <entry>Reverse</entry>
1086             </row>
1087           </thead>
1088           <tbody>
1089             <row>
1090               <entry><option>-auto</option></entry>
1091               <entry>Auto-add <literal>_scc_</literal>s to all
1092               exported functions</entry>
1093               <entry>static</entry>
1094               <entry><option>-no-auto</option></entry>
1095             </row>
1096             <row>
1097               <entry><option>-auto-all</option></entry>
1098               <entry>Auto-add <literal>_scc_</literal>s to all
1099               top-level functions</entry>
1100               <entry>static</entry>
1101               <entry><option>-no-auto-all</option></entry>
1102             </row>
1103             <row>
1104               <entry><option>-caf-all</option></entry>
1105               <entry>Auto-add <literal>_scc_</literal>s to all CAFs</entry>
1106               <entry>static</entry>
1107               <entry><option>-no-caf-all</option></entry>
1108             </row>
1109             <row>
1110               <entry><option>-prof</option></entry>
1111               <entry>Turn on profiling</entry>
1112               <entry>static</entry>
1113               <entry>-</entry>
1114             </row>
1115             <row>
1116               <entry><option>-ticky</option></entry>
1117               <entry>Turn on ticky-ticky profiling</entry>
1118               <entry>static</entry>
1119               <entry>-</entry>
1120             </row>
1121           </tbody>
1122         </tgroup>
1123       </informaltable>
1124     </sect2>
1125
1126     <sect2>
1127       <title>Haskell pre-processor options</title>
1128
1129       <para><xref linkend="pre-processor"/></para>
1130
1131       <informaltable>
1132         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1133           <thead>
1134             <row>
1135               <entry>Flag</entry>
1136               <entry>Description</entry>
1137               <entry>Static/Dynamic</entry>
1138               <entry>Reverse</entry>
1139             </row>
1140           </thead>
1141           <tbody>
1142             <row>
1143               <entry><option>-F</option></entry>
1144               <entry>
1145                   Enable the use of a pre-processor
1146                   (set with <option>-pgmF</option>)
1147               </entry>
1148               <entry>dynamic</entry>
1149               <entry>-</entry>
1150             </row>
1151           </tbody>
1152         </tgroup>
1153       </informaltable>
1154     </sect2>
1155
1156     <sect2>
1157       <title>C pre-processor options</title>
1158
1159       <para><xref linkend="c-pre-processor"/></para>
1160
1161       <informaltable>
1162         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1163           <thead>
1164             <row>
1165               <entry>Flag</entry>
1166               <entry>Description</entry>
1167               <entry>Static/Dynamic</entry>
1168               <entry>Reverse</entry>
1169             </row>
1170           </thead>
1171           <tbody>
1172             <row>
1173               <entry><option>-cpp</option></entry>
1174               <entry>Run the C pre-processor on Haskell source files</entry>
1175               <entry>dynamic</entry>
1176               <entry>-</entry>
1177             </row>
1178             <row>
1179               <entry><option>-D</option><replaceable>symbol</replaceable><optional>=<replaceable>value</replaceable></optional></entry>
1180               <entry>Define a symbol in the C pre-processor</entry>
1181               <entry>dynamic</entry>
1182               <entry><option>-U</option><replaceable>symbol</replaceable></entry>
1183             </row>
1184             <row>
1185               <entry><option>-U</option><replaceable>symbol</replaceable></entry>
1186               <entry>Undefine a symbol in the C pre-processor</entry>
1187               <entry>dynamic</entry>
1188               <entry>-</entry>
1189             </row>
1190             <row>
1191               <entry><option>-I</option><replaceable>dir</replaceable></entry>
1192               <entry>Add <replaceable>dir</replaceable> to the
1193               directory search list for <literal>#include</literal> files</entry>
1194               <entry>dynamic</entry>
1195               <entry>-</entry>
1196             </row>
1197           </tbody>
1198         </tgroup>
1199       </informaltable>
1200     </sect2>
1201
1202     <sect2>
1203       <title>C compiler options</title>
1204
1205       <para><xref linkend="options-C-compiler"/></para>
1206       <informaltable>
1207         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1208           <thead>
1209             <row>
1210               <entry>Flag</entry>
1211               <entry>Description</entry>
1212               <entry>Static/Dynamic</entry>
1213               <entry>Reverse</entry>
1214             </row>
1215           </thead>
1216           <tbody>
1217             <row>
1218               <entry><option>-#include</option> <replaceable>file</replaceable></entry>
1219               <entry>Include <replaceable>file</replaceable> when
1220               compiling the <filename>.hc</filename> file</entry>
1221               <entry>dynamic</entry>
1222               <entry>-</entry>
1223             </row>
1224           </tbody>
1225         </tgroup>
1226       </informaltable>
1227     </sect2>
1228
1229     <sect2>
1230       <title>Code generation options</title>
1231
1232       <para><xref linkend="options-codegen"/></para>
1233
1234       <informaltable>
1235         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1236           <thead>
1237             <row>
1238               <entry>Flag</entry>
1239               <entry>Description</entry>
1240               <entry>Static/Dynamic</entry>
1241               <entry>Reverse</entry>
1242             </row>
1243           </thead>
1244           <tbody>
1245             <row>
1246               <entry><option>-fasm</option></entry>
1247               <entry>Use the native code generator</entry>
1248               <entry>dynamic</entry>
1249               <entry>-fvia-C</entry>
1250             </row>
1251             <row>
1252               <entry><option>-fvia-C</option></entry>
1253               <entry>Compile via C</entry>
1254               <entry>dynamic</entry>
1255               <entry>-fasm</entry>
1256             </row>
1257             <row>
1258               <entry><option>-fno-code</option></entry>
1259               <entry>Omit code generation</entry>
1260               <entry>mode</entry>
1261               <entry>-</entry>
1262             </row>
1263           </tbody>
1264         </tgroup>
1265       </informaltable>
1266     </sect2>
1267
1268     <sect2>
1269       <title>Linking options</title>
1270
1271       <para><xref linkend="options-linker"/></para>
1272
1273       <informaltable>
1274         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1275           <thead>
1276             <row>
1277               <entry>Flag</entry>
1278               <entry>Description</entry>
1279               <entry>Static/Dynamic</entry>
1280               <entry>Reverse</entry>
1281             </row>
1282           </thead>
1283           <tbody>
1284             <row>
1285               <entry><option>-fPIC</option></entry>
1286               <entry>Generate position-independent code (where available)</entry>
1287               <entry>static</entry>
1288               <entry>-</entry>
1289             </row>
1290             <row>
1291               <entry><option>-dynamic</option></entry>
1292               <entry>Use dynamic Haskell libraries (if available)</entry>
1293               <entry>static</entry>
1294               <entry>-</entry>
1295             </row>
1296             <row>
1297               <entry><option>-framework</option> <replaceable>name</replaceable></entry>
1298               <entry>On Darwin/MacOS X only, link in the framework <replaceable>name</replaceable>.
1299                 This option corresponds to the <option>-framework</option> option for Apple's Linker.</entry>
1300               <entry>dynamic</entry>
1301               <entry>-</entry>
1302             </row>
1303             <row>
1304               <entry><option>-framework-path</option> <replaceable>name</replaceable></entry>
1305               <entry>On Darwin/MacOS X only, add <replaceable>dir</replaceable> to the list of
1306                 directories searched for frameworks.
1307                 This option corresponds to the <option>-F</option> option for Apple's Linker.</entry>
1308               <entry>dynamic</entry>
1309               <entry>-</entry>
1310             </row>
1311             <row>
1312               <entry><option>-l</option><replaceable>lib</replaceable></entry>
1313               <entry>Link in library <replaceable>lib</replaceable></entry>
1314               <entry>dynamic</entry>
1315               <entry>-</entry>
1316             </row>
1317             <row>
1318               <entry><option>-L</option><replaceable>dir</replaceable></entry>
1319               <entry>Add <replaceable>dir</replaceable> to the list of
1320               directories searched for libraries</entry>
1321               <entry>dynamic</entry>
1322               <entry>-</entry>
1323             </row>
1324             <row>
1325               <entry><option>-main-is</option></entry>
1326               <entry>Set main function</entry>
1327               <entry>dynamic</entry>
1328               <entry>-</entry>
1329             </row>
1330             <row>
1331               <entry><option>--mk-dll</option></entry>
1332               <entry>DLL-creation mode (Windows only)</entry>
1333               <entry>dynamic</entry>
1334               <entry>-</entry>
1335             </row>
1336             <row>
1337               <entry><option>-no-hs-main</option></entry>
1338               <entry>Don't assume this program contains <literal>main</literal></entry>
1339               <entry>dynamic</entry>
1340               <entry>-</entry>
1341             </row>
1342             <row>
1343               <entry><option>-no-link</option></entry>
1344               <entry>Omit linking</entry>
1345               <entry>dynamic</entry>
1346               <entry>-</entry>
1347             </row>
1348             <row>
1349               <entry><option>-split-objs</option></entry>
1350               <entry>Split objects (for libraries)</entry>
1351               <entry>dynamic</entry>
1352               <entry>-</entry>
1353             </row>
1354             <row>
1355               <entry><option>-static</option></entry>
1356               <entry>Use static Haskell libraries</entry>
1357               <entry>static</entry>
1358               <entry>-</entry>
1359             </row>
1360             <row>
1361               <entry><option>-threaded</option></entry>
1362               <entry>Use the threaded runtime</entry>
1363               <entry>static</entry>
1364               <entry>-</entry>
1365             </row>
1366             <row>
1367               <entry><option>-debug</option></entry>
1368               <entry>Use the debugging runtime</entry>
1369               <entry>static</entry>
1370               <entry>-</entry>
1371             </row>
1372           </tbody>
1373         </tgroup>
1374       </informaltable>
1375     </sect2>
1376
1377     <sect2>
1378       <title>Replacing phases</title>
1379
1380       <para><xref linkend="replacing-phases"/></para>
1381
1382       <informaltable>
1383         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1384           <thead>
1385             <row>
1386               <entry>Flag</entry>
1387               <entry>Description</entry>
1388               <entry>Static/Dynamic</entry>
1389               <entry>Reverse</entry>
1390             </row>
1391           </thead>
1392           <tbody>
1393             <row>
1394               <entry><option>-pgmL</option> <replaceable>cmd</replaceable></entry>
1395               <entry>Use <replaceable>cmd</replaceable> as the literate pre-processor</entry>
1396               <entry>dynamic</entry>
1397               <entry>-</entry>
1398             </row>
1399             <row>
1400               <entry><option>-pgmP</option> <replaceable>cmd</replaceable></entry>
1401               <entry>Use <replaceable>cmd</replaceable> as the C
1402               pre-processor (with <option>-cpp</option> only)</entry>
1403               <entry>dynamic</entry>
1404               <entry>-</entry>
1405             </row>
1406             <row>
1407               <entry><option>-pgmc</option> <replaceable>cmd</replaceable></entry>
1408               <entry>Use <replaceable>cmd</replaceable> as the C compiler</entry>
1409               <entry>dynamic</entry>
1410               <entry>-</entry>
1411             </row>
1412             <row>
1413               <entry><option>-pgmm</option> <replaceable>cmd</replaceable></entry>
1414               <entry>Use <replaceable>cmd</replaceable> as the mangler</entry>
1415               <entry>dynamic</entry>
1416               <entry>-</entry>
1417             </row>
1418             <row>
1419               <entry><option>-pgms</option> <replaceable>cmd</replaceable></entry>
1420               <entry>Use <replaceable>cmd</replaceable> as the splitter</entry>
1421               <entry>dynamic</entry>
1422               <entry>-</entry>
1423             </row>
1424             <row>
1425               <entry><option>-pgma</option> <replaceable>cmd</replaceable></entry>
1426               <entry>Use <replaceable>cmd</replaceable> as the assembler</entry>
1427               <entry>dynamic</entry>
1428               <entry>-</entry>
1429             </row>
1430             <row>
1431               <entry><option>-pgml</option> <replaceable>cmd</replaceable></entry>
1432               <entry>Use <replaceable>cmd</replaceable> as the linker</entry>
1433               <entry>dynamic</entry>
1434               <entry>-</entry>
1435             </row>
1436             <row>
1437               <entry><option>-pgmdll</option> <replaceable>cmd</replaceable></entry>
1438               <entry>Use <replaceable>cmd</replaceable> as the DLL generator</entry>
1439               <entry>dynamic</entry>
1440               <entry>-</entry>
1441             </row>
1442             <row>
1443               <entry><option>-pgmF</option> <replaceable>cmd</replaceable></entry>
1444               <entry>Use <replaceable>cmd</replaceable> as the pre-processor
1445               (with <option>-F</option> only)</entry>
1446               <entry>dynamic</entry>
1447               <entry>-</entry>
1448             </row>
1449           </tbody>
1450         </tgroup>
1451       </informaltable>
1452       <indexterm><primary><option>-pgmL</option></primary></indexterm>
1453       <indexterm><primary><option>-pgmP</option></primary></indexterm>
1454       <indexterm><primary><option>-pgmc</option></primary></indexterm>
1455       <indexterm><primary><option>-pgma</option></primary></indexterm>
1456       <indexterm><primary><option>-pgml</option></primary></indexterm>
1457       <indexterm><primary><option>-pgmdll</option></primary></indexterm>
1458       <indexterm><primary><option>-pgmF</option></primary></indexterm>
1459
1460     </sect2>
1461
1462     <sect2>
1463       <title>Forcing options to particular phases</title>
1464
1465       <para><xref linkend="forcing-options-through"/></para>
1466
1467       <informaltable>
1468         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1469           <thead>
1470             <row>
1471               <entry>Flag</entry>
1472               <entry>Description</entry>
1473               <entry>Static/Dynamic</entry>
1474               <entry>Reverse</entry>
1475             </row>
1476           </thead>
1477           <tbody>
1478             <row>
1479               <entry><option>-optL</option> <replaceable>option</replaceable></entry>
1480               <entry>pass <replaceable>option</replaceable> to the literate pre-processor</entry>
1481               <entry>dynamic</entry>
1482               <entry>-</entry>
1483             </row>
1484             <row>
1485               <entry><option>-optP</option> <replaceable>option</replaceable></entry>
1486               <entry>pass <replaceable>option</replaceable> to cpp (with
1487               <option>-cpp</option> only)</entry>
1488               <entry>dynamic</entry>
1489               <entry>-</entry>
1490             </row>
1491             <row>
1492               <entry><option>-optF</option> <replaceable>option</replaceable></entry>
1493               <entry>pass <replaceable>option</replaceable> to the
1494               custom pre-processor</entry>
1495               <entry>dynamic</entry>
1496               <entry>-</entry>
1497             </row>
1498             <row>
1499               <entry><option>-optc</option> <replaceable>option</replaceable></entry>
1500               <entry>pass <replaceable>option</replaceable> to the C compiler</entry>
1501               <entry>dynamic</entry>
1502               <entry>-</entry>
1503             </row>
1504             <row>
1505               <entry><option>-optm</option> <replaceable>option</replaceable></entry>
1506               <entry>pass <replaceable>option</replaceable> to the mangler</entry>
1507               <entry>dynamic</entry>
1508               <entry>-</entry>
1509             </row>
1510             <row>
1511               <entry><option>-opta</option> <replaceable>option</replaceable></entry>
1512               <entry>pass <replaceable>option</replaceable> to the assembler</entry>
1513               <entry>dynamic</entry>
1514               <entry>-</entry>
1515             </row>
1516             <row>
1517               <entry><option>-optl</option> <replaceable>option</replaceable></entry>
1518               <entry>pass <replaceable>option</replaceable> to the linker</entry>
1519               <entry>dynamic</entry>
1520               <entry>-</entry>
1521             </row>
1522             <row>
1523               <entry><option>-optdll</option> <replaceable>option</replaceable></entry>
1524               <entry>pass <replaceable>option</replaceable> to the DLL generator</entry>
1525               <entry>dynamic</entry>
1526               <entry>-</entry>
1527             </row>
1528             <row>
1529               <entry><option>-optdep</option> <replaceable>option</replaceable></entry>
1530               <entry>pass <replaceable>option</replaceable> to the dependency generator</entry>
1531               <entry>dynamic</entry>
1532               <entry>-</entry>
1533             </row>
1534           </tbody>
1535         </tgroup>
1536       </informaltable>
1537     </sect2>
1538
1539     <sect2>
1540       <title>Platform-specific options</title>
1541       
1542       <para><xref linkend="options-platform"/></para>
1543
1544       <informaltable>
1545         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1546           <thead>
1547             <row>
1548               <entry>Flag</entry>
1549               <entry>Description</entry>
1550               <entry>Static/Dynamic</entry>
1551               <entry>Reverse</entry>
1552             </row>
1553           </thead>
1554           <tbody>
1555             <row>
1556               <entry><option>-monly-[432]-regs</option></entry>
1557               <entry>(x86 only) give some registers back to the C compiler</entry>
1558               <entry>dynamic</entry>
1559               <entry>-</entry>
1560             </row>
1561           </tbody>
1562         </tgroup>
1563       </informaltable>
1564     </sect2>
1565
1566          
1567     <sect2>
1568       <title>External core file options</title>
1569
1570       <para><xref linkend="ext-core"/></para>
1571
1572       <informaltable>
1573         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1574           <thead>
1575             <row>
1576               <entry>Flag</entry>
1577               <entry>Description</entry>
1578               <entry>Static/Dynamic</entry>
1579               <entry>Reverse</entry>
1580             </row>
1581           </thead>
1582           <tbody>
1583             <row>
1584               <entry><option>-fext-core</option></entry>
1585               <entry>Generate <filename>.hcr</filename> external Core files</entry>
1586               <entry>static</entry>
1587               <entry>-</entry>
1588             </row>
1589           </tbody>
1590         </tgroup>
1591       </informaltable>
1592     </sect2>
1593
1594
1595     <sect2>
1596       <title>Compiler debugging options</title>
1597
1598       <para><xref linkend="options-debugging"/></para>
1599
1600       <informaltable>
1601         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1602           <thead>
1603             <row>
1604               <entry>Flag</entry>
1605               <entry>Description</entry>
1606               <entry>Static/Dynamic</entry>
1607               <entry>Reverse</entry>
1608             </row>
1609           </thead>
1610           <tbody>
1611             <row>
1612               <entry><option>-dcore-lint</option></entry>
1613               <entry>Turn on internal sanity checking</entry>
1614               <entry>dynamic</entry>
1615               <entry>-</entry>
1616             </row>
1617             <row>
1618               <entry><option>-ddump-asm</option></entry>
1619               <entry>Dump assembly</entry>
1620               <entry>dynamic</entry>
1621               <entry>-</entry>
1622             </row>
1623             <row>
1624               <entry><option>-ddump-bcos</option></entry>
1625               <entry>Dump interpreter byte code</entry>
1626               <entry>dynamic</entry>
1627               <entry>-</entry>
1628             </row>
1629             <row>
1630               <entry><option>-ddump-cmm</option></entry>
1631               <entry>Dump C-- output</entry>
1632               <entry>dynamic</entry>
1633               <entry>-</entry>
1634             </row>
1635             <row>
1636               <entry><option>-ddump-cpranal</option></entry>
1637               <entry>Dump output from CPR analysis</entry>
1638               <entry>dynamic</entry>
1639               <entry>-</entry>
1640             </row>
1641             <row>
1642               <entry><option>-ddump-cse</option></entry>
1643               <entry>Dump CSE output</entry>
1644               <entry>dynamic</entry>
1645               <entry>-</entry>
1646             </row>
1647             <row>
1648               <entry><option>-ddump-deriv</option></entry>
1649               <entry>Dump deriving output</entry>
1650               <entry>dynamic</entry>
1651               <entry>-</entry>
1652             </row>
1653             <row>
1654               <entry><option>-ddump-ds</option></entry>
1655               <entry>Dump desugarer output</entry>
1656               <entry>dynamic</entry>
1657               <entry>-</entry>
1658             </row>
1659             <row>
1660               <entry><option>-ddump-flatC</option></entry>
1661               <entry>Dump &ldquo;flat&rdquo; C</entry>
1662               <entry>dynamic</entry>
1663               <entry>-</entry>
1664             </row>
1665             <row>
1666               <entry><option>-ddump-foreign</option></entry>
1667               <entry>Dump <literal>foreign export</literal> stubs</entry>
1668               <entry>dynamic</entry>
1669               <entry>-</entry>
1670             </row>
1671             <row>
1672               <entry><option>-ddump-inlinings</option></entry>
1673               <entry>Dump inlining info</entry>
1674               <entry>dynamic</entry>
1675               <entry>-</entry>
1676             </row>
1677             <row>
1678               <entry><option>-ddump-occur-anal</option></entry>
1679               <entry>Dump occurrence analysis output</entry>
1680               <entry>dynamic</entry>
1681               <entry>-</entry>
1682             </row>
1683             <row>
1684               <entry><option>-ddump-opt-cmm</option></entry>
1685               <entry>Dump the results of C-- to C-- optimising passes</entry>
1686               <entry>dynamic</entry>
1687               <entry>-</entry>
1688             </row>
1689             <row>
1690               <entry><option>-ddump-parsed</option></entry>
1691               <entry>Dump parse tree</entry>
1692               <entry>dynamic</entry>
1693               <entry>-</entry>
1694             </row>
1695             <row>
1696               <entry><option>-ddump-prep</option></entry>
1697               <entry>Dump prepared core</entry>
1698               <entry>dynamic</entry>
1699               <entry>-</entry>
1700             </row>
1701             <row>
1702               <entry><option>-ddump-rn</option></entry>
1703               <entry>Dump renamer output</entry>
1704               <entry>dynamic</entry>
1705               <entry>-</entry>
1706             </row>
1707             <row>
1708               <entry><option>-ddump-rules</option></entry>
1709               <entry>Dump rules</entry>
1710               <entry>dynamic</entry>
1711               <entry>-</entry>
1712             </row>
1713             <row>
1714               <entry><option>-ddump-simpl</option></entry>
1715               <entry>Dump final simplifier output</entry>
1716               <entry>dynamic</entry>
1717               <entry>-</entry>
1718             </row>
1719             <row>
1720               <entry><option>-ddump-simpl-iterations</option></entry>
1721               <entry>Dump output from each simplifier iteration</entry>
1722               <entry>dynamic</entry>
1723               <entry>-</entry>
1724             </row>
1725             <row>
1726               <entry><option>-ddump-spec</option></entry>
1727               <entry>Dump specialiser output</entry>
1728               <entry>dynamic</entry>
1729               <entry>-</entry>
1730             </row>
1731             <row>
1732               <entry><option>-ddump-splices</option></entry>
1733               <entry>Dump TH splided expressions, and what they evaluate to</entry>
1734               <entry>dynamic</entry>
1735               <entry>-</entry>
1736             </row>
1737             <row>
1738               <entry><option>-ddump-stg</option></entry>
1739               <entry>Dump final STG</entry>
1740               <entry>dynamic</entry>
1741               <entry>-</entry>
1742             </row>
1743             <row>
1744               <entry><option>-ddump-stranal</option></entry>
1745               <entry>Dump strictness analyser output</entry>
1746               <entry>dynamic</entry>
1747               <entry>-</entry>
1748             </row>
1749             <row>
1750               <entry><option>-ddump-tc</option></entry>
1751               <entry>Dump typechecker output</entry>
1752               <entry>dynamic</entry>
1753               <entry>-</entry>
1754             </row>
1755             <row>
1756               <entry><option>-ddump-types</option></entry>
1757               <entry>Dump type signatures</entry>
1758               <entry>dynamic</entry>
1759               <entry>-</entry>
1760             </row>
1761             <row>
1762               <entry><option>-ddump-worker-wrapper</option></entry>
1763               <entry>Dump worker-wrapper output</entry>
1764               <entry>dynamic</entry>
1765               <entry>-</entry>
1766             </row>
1767             <row>
1768               <entry><option>-ddump-if-trace</option></entry>
1769               <entry>Trace interface files</entry>
1770               <entry>dynamic</entry>
1771               <entry>-</entry>
1772             </row>
1773             <row>
1774               <entry><option>-ddump-tc-trace</option></entry>
1775               <entry>Trace typechecker</entry>
1776               <entry>dynamic</entry>
1777               <entry>-</entry>
1778             </row>
1779             <row>
1780               <entry><option>-ddump-rn-trace</option></entry>
1781               <entry>Trace renamer</entry>
1782               <entry>dynamic</entry>
1783               <entry>-</entry>
1784             </row>
1785             <row>
1786               <entry><option>-ddump-rn-stats</option></entry>
1787               <entry>Renamer stats</entry>
1788               <entry>dynamic</entry>
1789               <entry>-</entry>
1790             </row>
1791             <row>
1792               <entry><option>-ddump-simpl-stats</option></entry>
1793               <entry>Dump simplifier stats</entry>
1794               <entry>dynamic</entry>
1795               <entry>-</entry>
1796             </row>
1797             <row>
1798               <entry><option>-dppr-debug</option></entry>
1799               <entry>Turn on debug printing (more verbose)</entry>
1800               <entry>static</entry>
1801               <entry>-</entry>
1802             </row>
1803             <row>
1804               <entry><option>-dppr-noprags</option></entry>
1805               <entry>Don't output pragma info in dumps</entry>
1806               <entry>static</entry>
1807               <entry>-</entry>
1808             </row>
1809             <row>
1810               <entry><option>-dppr-user-length</option></entry>
1811               <entry>Set the depth for printing expressions in error msgs</entry>
1812               <entry>static</entry>
1813               <entry>-</entry>
1814             </row>
1815             <row>
1816               <entry><option>-dsource-stats</option></entry>
1817               <entry>Dump haskell source stats</entry>
1818               <entry>dynamic</entry>
1819               <entry>-</entry>
1820             </row>
1821             <row>
1822               <entry><option>-dcmm-lint</option></entry>
1823               <entry>C-- pass sanity checking</entry>
1824               <entry>dynamic</entry>
1825               <entry>-</entry>
1826             </row>
1827             <row>
1828               <entry><option>-dstg-lint</option></entry>
1829               <entry>STG pass sanity checking</entry>
1830               <entry>dynamic</entry>
1831               <entry>-</entry>
1832             </row>
1833             <row>
1834               <entry><option>-dstg-stats</option></entry>
1835               <entry>Dump STG stats</entry>
1836               <entry>dynamic</entry>
1837               <entry>-</entry>
1838             </row>
1839             <row>
1840               <entry><option>-dverbose-core2core</option></entry>
1841               <entry>Show output from each core-to-core pass</entry>
1842               <entry>dynamic</entry>
1843               <entry>-</entry>
1844             </row>
1845             <row>
1846               <entry><option>-dverbose-stg2stg</option></entry>
1847               <entry>Show output from each STG-to-STG pass</entry>
1848               <entry>dynamic</entry>
1849               <entry>-</entry>
1850             </row>
1851             <row>
1852               <entry><option>-dshow-passes</option></entry>
1853               <entry>Print out each pass name as it happens</entry>
1854               <entry>dynamic</entry>
1855               <entry>-</entry>
1856             </row>
1857             <row>
1858               <entry><option>-dfaststring-stats</option></entry>
1859               <entry>Show statistics for fast string usage when finished</entry>
1860               <entry>dynamic</entry>
1861               <entry>-</entry>
1862             </row>
1863             <row>
1864               <entry><option>-unreg</option></entry>
1865               <entry>Enable unregisterised compilation</entry>
1866               <entry>static</entry>
1867               <entry>-</entry>
1868             </row>
1869           </tbody>
1870         </tgroup>
1871       </informaltable>
1872     </sect2>
1873       
1874     <sect2>
1875       <title>Misc compiler options</title>
1876
1877       <informaltable>
1878         <tgroup cols="4" align="left" colsep="1" rowsep="1">
1879           <thead>
1880             <row>
1881               <entry>Flag</entry>
1882               <entry>Description</entry>
1883               <entry>Static/Dynamic</entry>
1884               <entry>Reverse</entry>
1885             </row>
1886           </thead>
1887           <tbody>
1888             <row>
1889               <entry><option>-fno-hi-version-check</option></entry>
1890               <entry>Don't complain about <literal>.hi</literal> file mismatches</entry>
1891               <entry>static</entry>
1892               <entry>-</entry>
1893             </row>
1894             <row>
1895               <entry><option>-dno-black-holing</option></entry>
1896               <entry>Turn off black holing (probably doesn't work)</entry>
1897               <entry>static</entry>
1898               <entry>-</entry>
1899             </row>
1900             <row>
1901               <entry><option>-fno-method-sharing</option></entry>
1902               <entry>Don't share specialisations of overloaded functions</entry>
1903               <entry>static</entry>
1904               <entry>-</entry>
1905             </row>
1906             <row>
1907               <entry><option>-fhistory-size</option></entry>
1908               <entry>Set simplification history size</entry>
1909               <entry>static</entry>
1910               <entry>-</entry>
1911             </row>
1912             <row>
1913               <entry><option>-funregisterised</option></entry>
1914               <entry>Unregisterised compilation (use <option>-unreg</option> instead)</entry>
1915               <entry>static</entry>
1916               <entry>-</entry>
1917             </row>
1918             <row>
1919               <entry><option>-fno-asm-mangling</option></entry>
1920               <entry>Turn off assembly mangling (use <option>-unreg</option> instead)</entry>
1921               <entry>dynamic</entry>
1922               <entry>-</entry>
1923             </row>
1924             <row>
1925               <entry><option>-fno-print-bind-result</option></entry>
1926               <entry><link linkend="ghci-stmts">Turn off printing of binding results in GHCi</link></entry>
1927               <entry>dynamic</entry>
1928               <entry>-</entry>
1929             </row>
1930           </tbody>
1931         </tgroup>
1932       </informaltable>
1933     </sect2>
1934   </sect1>
1935
1936
1937 <!--
1938 Still to document:
1939
1940 Misc:
1941   ,  ( "H"                 , HasArg (setHeapSize . fromIntegral . decodeSize) )
1942
1943   -Bdir
1944 -->
1945
1946 <!-- Emacs stuff:
1947      ;;; Local Variables: ***
1948      ;;; mode: xml ***
1949      ;;; sgml-parent-document: ("users_guide.xml" "book" "chapter") ***
1950      ;;; End: ***
1951  -->