summaryrefslogtreecommitdiff
path: root/ghc/docs/users_guide/using.vsgml
blob: 61c5ef4a3ec37ae1959301ccfc7f5a5e2aedb4bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
<sect> Using GHC
<label id="using-GHC">
<p>
<nidx>GHC, using</nidx>
<nidx>using GHC</nidx>

GHC is a command-line compiler: in order to compile a Haskell program,
GHC must be invoked on the source file(s) by typing a command to the
shell.  The steps involved in compiling a program can be automated
using the @make@ tool (this is especially useful if the program
consists of multiple source files which depend on each other).  This
section describes how to use GHC from the command-line.

%************************************************************************
%*                                                                      *
<sect1> Overall command-line structure
<label id="command-line-structure">
<p>
<nidx>structure, command-line</nidx>
<nidx>command-line structure</nidx>
%*                                                                      *
%************************************************************************

An invocation of GHC takes the following form:

<tscreen> <verb>
ghc [argument...]
</verb> </tscreen>

Command-line arguments are either options or file names.

Command-line options begin with @-@.  They may <em>not</em> be
grouped: @-vO@ is different from @-v -O@.  Options need not
precede filenames: e.g., @ghc *.o -o foo@.  All options are
processed and then applied to all files; you cannot, for example, invoke
@ghc -c -O1 Foo.hs -O2 Bar.hs@ to apply different optimisation
levels to the files @Foo.hs@ and @Bar.hs@.  For conflicting
options, e.g., @-c -S@, we reserve the right to do anything we
want.  (Usually, the last one applies.)

%************************************************************************
%*                                                                      *
<sect1>Meaningful file suffixes
<label id="file-suffixes">
<p>
<nidx>suffixes, file</nidx>
<nidx>file suffixes for GHC</nidx>
%*                                                                      *
%************************************************************************

File names with ``meaningful'' suffixes (e.g., @.lhs@ or @.o@)
cause the ``right thing'' to happen to those files.

<descrip>
<tag>@.lhs@:</tag>
<nidx>lhs suffix</nidx>
A ``literate Haskell'' module.

<tag>@.hs@:</tag> 
A not-so-literate Haskell module.

<tag>@.hi@:</tag>
A Haskell interface file, probably compiler-generated.

<tag>@.hc@:</tag>
Intermediate C file produced by the Haskell compiler.

<tag>@.c@:</tag>
A C~file not produced by the Haskell compiler.

% <tag>@.i@:</tag>
% C code after it has be preprocessed by the C compiler (using the
% @-E@ flag).

<tag>@.s@:</tag>
An assembly-language source file, usually
produced by the compiler.

<tag>@.o@:</tag>
An object file, produced by an assembler.
</descrip>

Files with other suffixes (or without suffixes) are passed straight
to the linker.

%************************************************************************
%*                                                                      *
<sect1>Help and verbosity options
<label id="options-help">
<p>
<nidx>help options (GHC)</nidx>
<nidx>verbose option (GHC)</nidx>
%*                                                                      *
%************************************************************************

A good option to start with is the @-help@ (or @-?@) option.
<nidx>-help option</nidx>
<nidx>-? option</nidx>
GHC spews a long message to standard output and then exits.

The @-v@<nidx>-v option</nidx> option makes GHC <em>verbose</em>: it
reports its version number and shows (on stderr) exactly how it invokes each 
phase of the compilation system.  Moreover, it passes
the @-v@ flag to most phases; each reports
its version number (and possibly some other information).

Please, oh please, use the @-v@ option when reporting bugs!
Knowing that you ran the right bits in the right order is always the
first thing we want to verify.

If you're just interested in the compiler version number, the
@--version@<nidx>--version option</nidx> option prints out a
one-line string containing the requested info.

%************************************************************************
%*                                                                      *
<sect1>Running the right phases in the right order
<label id="options-order">
<p>
<nidx>order of passes in GHC</nidx>
<nidx>pass ordering in GHC</nidx>
%*                                                                      *
%************************************************************************

The basic task of the @ghc@ driver is to run each input file
through the right phases (compiling, linking, etc.).

The first phase to run is determined by the input-file suffix, and the
last phase is determined by a flag.  If no relevant flag is present,
then go all the way through linking.  This table summarises:

<tabular ca="llll">
Phase of the           | Suffix saying | Flag saying   | (suffix of) @@
compilation system     | ``start here''| ``stop after''| output file @@
@@
literate pre-processor | .lhs          | -             | - @@
C pre-processor (opt.) | -             | -             | - @@
Haskell compiler       | .hs           | -C, -S        | .hc, .s @@
C compiler (opt.)      | .hc or .c     | -S            | .s  @@
assembler              | .s            | -c            | .o  @@
linker                 | other         | -             | a.out @@
</tabular>
<nidx>-C option</nidx>
<nidx>-S option</nidx>
<nidx>-c option</nidx>

Thus, a common invocation would be: @ghc -c Foo.hs@

Note: What the Haskell compiler proper produces depends on whether a
native-code generator is used (producing assembly language) or not
(producing C).

The option @-cpp@<nidx>-cpp option</nidx> must be given for the C
pre-processor phase to be run, that is, the pre-processor will be run
over your Haskell source file before continuing.

The option @-E@<nidx>-E option</nidx> runs just the pre-processing
passes of the compiler, outputting the result on stdout before
stopping. If used in conjunction with -cpp, the output is the
code blocks of the original (literal) source after having put it
through the grinder that is the C pre-processor. Sans @-cpp@, the
output is the de-litted version of the original source.

The option @-optcpp-E@<nidx>-optcpp-E option</nidx> runs just the
pre-processing stage of the C-compiling phase, sending the result to
stdout.  (For debugging or obfuscation contests, usually.)

%************************************************************************
%*                                                                      *
<sect1>Re-directing the compilation output(s)
<label id="options-output">
<p>
<nidx>output-directing options</nidx>
%*                                                                      *
%************************************************************************

GHC's compiled output normally goes into a @.hc@, @.o@, etc., file,
depending on the last-run compilation phase.  The option @-o
foo@<nidx>-o option</nidx> re-directs the output of that last-run
phase to file @foo@.

Note: this ``feature'' can be counterintuitive:
@ghc -C -o foo.o foo.hs@ will put the intermediate C code in the
file @foo.o@, name notwithstanding!

EXOTICA: But the @-o@ option isn't of much use if you have
<em>several</em> input files... Non-interface output files are
normally put in the same directory as their corresponding input file
came from.  You may specify that they be put in another directory
using the @-odir <dir>@<nidx>-odir &lt;dir&gt; option</nidx> (the
``Oh, dear'' option).  For example:

<tscreen><verb>
% ghc -c parse/Foo.hs parse/Bar.hs gurgle/Bumble.hs -odir `arch`
</verb></tscreen>

The output files, @Foo.o@, @Bar.o@, and @Bumble.o@ would be
put into a subdirectory named after the architecture of the executing
machine (@sun4@, @mips@, etc).  The directory must already
exist; it won't be created.

Note that the @-odir@ option does <em>not</em> affect where the
interface files are put.  In the above example, they would still be
put in @parse/Foo.hi@, @parse/Bar.hi@, and @gurgle/Bumble.hi@.

MORE EXOTICA: The @-osuf <suffix>@<nidx>-osuf &lt;suffix&gt;
option</nidx> will change the @.o@ file suffix for object files to
whatever you specify.  (We use this in compiling the prelude.).
Similarly, the @-hisuf <suffix>@<nidx>-hisuf &lt;suffix&gt;
option</nidx> will change the @.hi@ file suffix for non-system
interface files (see Section <ref name="Other options related to
interface files" id="hi-options">).

The @-hisuf@/@-osuf@ game is useful if you want to compile a program
with both GHC and HBC (say) in the same directory.  Let HBC use the
standard @.hi@/@.o@ suffixes; add @-hisuf g_hi -osuf g_o@ to your
@make@ rule for GHC compiling...

FURTHER EXOTICA: If you are doing a normal @.hs@-to-@.o@ compilation
but would like to hang onto the intermediate @.hc@ C file, just
throw in a @-keep-hc-file-too@ option<nidx>-keep-hc-file-too option</nidx>.
If you would like to look at the assembler output, toss in a
@-keep-s-file-too@,<nidx>-keep-s-file-too option</nidx> too.

<sect2> Saving GHC's standard error output
<label id="saving-ghc-stderr">
<p>
<nidx>standard error, saving</nidx>

Sometimes, you may cause GHC to be rather chatty on standard error;
with @-v@, for example.  You can instruct GHC to <em>append</em> this
output to a particular log file with a @-odump <blah>@<nidx>-odump
&lt;blah&gt; option</nidx> option.

<sect2> Redirecting temporary files
<label id="temp-files">
<p>
<nidx>temporary files, redirecting</nidx>

If you have trouble because of running out of space in @/tmp@ (or
wherever your installation thinks temporary files should go), you may
use the @-tmpdir <dir>@<nidx>-tmpdir &lt;dir&gt; option</nidx> option
to specify an alternate directory.  For example, @-tmpdir .@ says to
put temporary files in the current working directory.

Alternatively, use your @TMPDIR@ environment variable.<nidx>TMPDIR
environment variable</nidx> Set it to the name of the directory where
temporary files should be put.  GCC and other programs will honour the
@TMPDIR@ variable as well.

Even better idea: Set the @TMPDIR@ variable when building GHC, and
never worry about @TMPDIR@ again. (see the build documentation).

%************************************************************************
%*                                                                      *
<sect1>Warnings and sanity-checking
<label id="options-sanity">
<p>
<nidx>sanity-checking options</nidx>
<nidx>warnings</nidx>
%*                                                                      *
%************************************************************************

GHC has a number of options that select which types of non-fatal error
messages, otherwise known as warnings, can be generated during
compilation.  By default, you get a standard set of warnings which are
generally likely to indicate bugs in your program.  These are:
@-fwarn-overlpapping-patterns@, @-fwarn-duplicate-exports@, and
@-fwarn-missing-methods@.  The following flags are simple ways to
select standard ``packages'' of warnings:

<descrip>

<tag>@-Wnot@:</tag>
<nidx>-Wnot option</nidx>

Turns off all warnings, including the standard ones.

<tag>@-w@:</tag>
<nidx>-w option</nidx>

Synonym for @-Wnot@.

<tag>@-W@:</tag>
<nidx>-W option</nidx>

Provides the standard warnings plus @-fwarn-incomplete-patterns@,
@-fwarn-unused-imports@ and @-fwarn-unused-binds@.

<tag>@-Wall@:</tag>
<nidx>-Wall option</nidx>

Turns on all warning options.

</descrip>

The full set of warning options is described below.  To turn off any
warning, simply give the corresponding @-fno-warn-...@ option on
the command line.

<descrip>

<tag>@-fwarn-name-shadowing@:</tag> 
<nidx>-fwarn-name-shadowing option</nidx>
<nidx>shadowing, warning</nidx>

This option causes a warning to be emitted whenever an inner-scope
value has the same name as an outer-scope value, i.e. the inner value
shadows the outer one.  This can catch typographical errors that turn
into hard-to-find bugs, e.g., in the inadvertent cyclic definition
@let x = ... x ... in@.

Consequently, this option does <em>not</em> allow cyclic recursive
definitions.

<tag>@-fwarn-overlapping-patterns@:</tag>
<nidx>-fwarn-overlapping-patterns option</nidx>
<nidx>overlapping patterns, warning</nidx>
<nidx>patterns, overlapping</nidx>

By default, the compiler will warn you if a set of patterns are
overlapping, i.e.,

<tscreen><verb>
f :: String -> Int
f []     = 0
f (_:xs) = 1
f "2"    = 2
</verb></tscreen>

where the last pattern match in @f@ won't ever be reached, as the
second pattern overlaps it. More often than not, redundant patterns
is a programmer mistake/error, so this option is enabled by default.

<tag>@-fwarn-incomplete-patterns@:</tag>
<nidx>-fwarn-incomplete-patterns option</nidx>
<nidx>incomplete patterns, warning</nidx>
<nidx>patterns, incomplete</nidx>

Similarly for incomplete patterns, the function @g@ below will fail
when applied to non-empty lists, so the compiler will emit a warning
about this when @-fwarn-incomplete-patterns@ is enabled.

<tscreen><verb>
g [] = 2
</verb></tscreen>

This option isn't enabled be default because it can be a bit noisy,
and it doesn't always indicate a bug in the program.  However, it's
generally considered good practice to cover all the cases in your
functions.

<tag>@-fwarn-missing-methods@:</tag>
<nidx>-fwarn-missing-methods option</nidx>
<nidx>missing methods, warning</nidx>
<nidx>methods, missing</nidx>

This option is on by default, and warns you whenever an instance
declaration is missing one or more methods, and the corresponding
class declaration has no default declaration for them.

<tag>@-fwarn-unused-imports@:</tag>
<nidx>-fwarn-unused-imports option</nidx>
<nidx>unused imports, warning</nidx>
<nidx>imports, unused</nidx>

Report any objects that are explicitly imported but never used.

<tag>@-fwarn-unused-binds@:</tag>
<nidx>-fwarn-unused-binds option</nidx>
<nidx>unused binds, warning</nidx>
<nidx>binds, unused</nidx>

Report any function definitions (and local bindings) which are unused.
For top-level functions, the warning is only given if the binding is
not exported.

<tag>@-fwarn-unused-matches@:</tag>
<nidx>-fwarn-unused-matches option</nidx>
<nidx>unused matches, warning</nidx>
<nidx>matches, unused</nidx>

Report all unused variables which arise from pattern matches,
including patterns consisting of a single variable.  For instance @f x
y = []@ would report @x@ and @y@ as unused.  To eliminate the warning,
all unused variables can be replaced with wildcards.

<tag>@-fwarn-duplicate-exports@:</tag>
<nidx>-fwarn-duplicate-exports option</nidx>
<nidx>duplicate exports, warning</nidx>
<nidx>export lists, duplicates</nidx>

Have the compiler warn about duplicate entries in export lists. This
is useful information if you maintain large export lists, and want to
avoid the continued export of a definition after you've deleted (one)
mention of it in the export list.

This option is on by default.

<tag><tt>-fwarn-type-defaults</tt>:</tag>
<nidx>-fwarn-type-defaults option</nidx>
<nidx>defaulting mechanism, warning</nidx>

Have the compiler warn/inform you where in your source the Haskell
defaulting mechanism for numeric types kicks in. This is useful
information when converting code from a context that assumed one
default into one with another, e.g., the 'default default' for Haskell
1.4 caused the otherwise unconstrained value <tt>1</tt> to be given
the type <tt>Int</tt>, whereas Haskell 98 defaults it to
<tt>Integer</tt>.  This may lead to differences in performance and
behaviour, hence the usefulness of being non-silent about this.

This warning is off by default.

<tag>@-fwarn-missing-signatures@:</tag>
<nidx>-fwarn-missing-signatures option</nidx>
<nidx>type signatures, missing</nidx>

If you would like GHC to check that every top-level function/value has
a type signature, use the @-fwarn-missing-signatures@ option.  This
option is off by default.

</descrip>

If you're feeling really paranoid, the @-dcore-lint@
option<nidx>-dcore-lint option</nidx> is a good choice.  It turns on
heavyweight intra-pass sanity-checking within GHC.  (It checks GHC's
sanity, not yours.)

%************************************************************************
%*                                                                      *
<sect1>Separate compilation
<label id="separate-compilation">
<p>
<nidx>separate compilation</nidx>
<nidx>recompilation checker</nidx>
<nidx>make and recompilation</nidx>
%*                                                                      *
%************************************************************************

This section describes how GHC supports separate compilation.

<sect2>Interface files
<label id="hi-files">
<p>
<nidx>interface files</nidx>
<nidx>.hi files</nidx>

When GHC compiles a source file @F@ which contains a module @A@, say,
it generates an object @F.o@, <em>and</em> a companion <em>interface
file</em> @A.hi@.  The interface file is not intended for human
consumption, as you'll see if you take a look at one.  It's merely
there to help the compiler compile other modules in the same program.

NOTE: Having the name of the interface file follow the module name and
not the file name, means that working with tools such as @make(1)@
become harder. @make@ implicitly assumes that any output files
produced by processing a translation unit will have file names that
can be derived from the file name of the translation unit.  For
instance, pattern rules becomes unusable.  For this reason, we
recommend you stick to using the same file name as the module name.

The interface file for @A@ contains information needed by the compiler
when it compiles any module @B@ that imports @A@, whether directly or
indirectly.  When compiling @B@, GHC will read @A.hi@ to find the
details that it needs to know about things defined in @A@.

Furthermore, when compiling module @C@ which imports @B@, GHC may
decide that it needs to know something about @A@ --- for example, @B@
might export a function that involves a type defined in @A@.  In this
case, GHC will go and read @A.hi@ even though @C@ does not explicitly
import @A@ at all.

The interface file may contain all sorts of things that aren't
explicitly exported from @A@ by the programmer.  For example, even
though a data type is exported abstractly, @A.hi@ will contain the
full data type definition.  For small function definitions, @A.hi@
will contain the complete definition of the function.  For bigger
functions, @A.hi@ will contain strictness information about the
function.  And so on.  GHC puts much more information into @.hi@ files
when optimisation is turned on with the @-O@ flag.  Without @-O@ it
puts in just the minimum; with @-O@ it lobs in a whole pile of stuff.
<nidx>optimsation, effect on .hi files</nidx>

@A.hi@ should really be thought of as a compiler-readable version of
@A.o@.  If you use a @.hi@ file that wasn't generated by the same
compilation run that generates the @.o@ file the compiler may assume
all sorts of incorrect things about @A@, resulting in core dumps and
other unpleasant happenings.

%************************************************************************
%*                                                                      *
<sect2>Finding interface files
<label id="options-finding-imports">
<p>
<nidx>interface files, finding them</nidx>
<nidx>finding interface files</nidx>
%*                                                                      *
%************************************************************************

In your program, you import a module @Foo@ by saying
@import Foo@.  GHC goes looking for an interface file, @Foo.hi@.
It has a builtin list of directories (notably including @.@) where
it looks.

<descrip>

<tag>@-i<dirs>@</tag><nidx>-i&lt;dirs&gt; option</nidx> This flag
prepends a colon-separated list of @dirs@ to the ``import
directories'' list.

<tag>@-i@</tag> resets the ``import directories'' list back to nothing.

<tag>@-fno-implicit-prelude@</tag>
<nidx>-fno-implicit-prelude option</nidx>
GHC normally imports @Prelude.hi@ files for you.  If you'd rather it
didn't, then give it a @-fno-implicit-prelude@ option.  You are
unlikely to get very far without a Prelude, but, hey, it's a free
country.

<tag>@-syslib <lib>@</tag>
<nidx>-syslib &lt;lib&gt; option</nidx>

If you are using a system-supplied non-Prelude library (e.g., the
POSIX library), just use a @-syslib posix@ option (for example).  The
right interface files should then be available.  Section <ref
name="The GHC Prelude and Libraries" id="ghc-prelude"> lists the
libraries available by this mechanism.

<tag>@-I<dir>@</tag>
<nidx>-I&lt;dir&gt; option</nidx>

Once a Haskell module has been compiled to C (@.hc@ file), you may
wish to specify where GHC tells the C compiler to look for @.h@ files.
(Or, if you are using the @-cpp@ option<nidx>-cpp option</nidx>, where
it tells the C pre-processor to look...)  For this purpose, use a @-I@
option in the usual C-ish way.

</descrip>

%************************************************************************
%*                                                                      *
<sect2>Other options related to interface files
<label id="hi-options">
<p>
<nidx>interface files, options</nidx>
%*                                                                      *
%************************************************************************

The interface output may be directed to another file
@bar2/Wurble.iface@ with the option @-ohi bar2/Wurble.iface@<nidx>-ohi
&lt;file&gt; option</nidx> (not recommended).

To avoid generating an interface file at all, use a @-nohi@
option.<nidx>-nohi option</nidx>

The compiler does not overwrite an existing @.hi@ interface file if
the new one is byte-for-byte the same as the old one; this is friendly
to @make@.  When an interface does change, it is often enlightening to
be informed.  The @-hi-diffs@<nidx>-hi-diffs option</nidx> option will
make @ghc@ run @diff@ on the old and new @.hi@ files. You can also
record the difference in the interface file itself, the
@-keep-hi-diffs@<nidx>-keep-hi-diffs</nidx> option takes care of that.

The @.hi@ files from GHC contain ``usage'' information which changes
often and uninterestingly.  If you really want to see these changes
reported, you need to use the
@-hi-diffs-with-usages@<nidx>-hi-diffs-with-usages option</nidx>
option.

Interface files are normally jammed full of compiler-produced
<em>pragmas</em>, which record arities, strictness info, etc.  If you
think these pragmas are messing you up (or you are doing some kind of
weird experiment), you can tell GHC to ignore them with the
@-fignore-interface-pragmas@<nidx>-fignore-interface-pragmas
option</nidx> option.

When compiling without optimisations on, the compiler is extra-careful
about not slurping in data constructors and instance declarations that
it will not need. If you believe it is getting it wrong and not
importing stuff which you think it should, this optimisation can be
turned off with @-fno-prune-tydecls@ and @-fno-prune-instdecls@.
<nidx>-fno-prune-tydecls option</nidx><nidx>-fno-prune-instdecls
option</nidx>

See also Section <ref name="Linking and consistency-checking"
id="options-linker">, which describes how the linker finds standard
Haskell libraries.

%************************************************************************
%*                                                                      *
<sect2>The recompilation checker
<label id="recomp">
<p>
<nidx>recompilation checker</nidx>
%*                                                                      *
%************************************************************************

In the olden days, GHC compared the newly-generated @.hi@ file with
the previous version; if they were identical, it left the old one
alone and didn't change its modification date.  In consequence,
importers of a module with an unchanged output @.hi@ file were not
recompiled.

This doesn't work any more.  In our earlier example, module @C@ does
not import module @A@ directly, yet changes to @A.hi@ should force a
recompilation of @C@.  And some changes to @A@ (changing the
definition of a function that appears in an inlining of a function
exported by @B@, say) may conceivably not change @B.hi@ one jot.  So
now...

GHC keeps a version number on each interface file, and on each type
signature within the interface file.  It also keeps in every interface
file a list of the version numbers of everything it used when it last
compiled the file.  If the source file's modification date is earlier
than the @.o@ file's date (i.e. the source hasn't changed since the
file was last compiled), and you give GHC the @-recomp@<nidx>-recomp
option</nidx> flag, then GHC will be clever.  It compares the version
numbers on the things it needs this time with the version numbers on
the things it needed last time (gleaned from the interface file of the
module being compiled); if they are all the same it stops compiling
rather early in the process saying ``Compilation IS NOT required''.
What a beautiful sight!

It's still an experimental feature (that's why @-recomp@ is off by
default), so tell us if you think it doesn't work.

Patrick Sansom has a workshop paper about how all this is done.  Ask
him (email: <htmlurl name="sansom@@dcs.gla.ac.uk"
url="mailto:sansom@@dcs.gla.ac.uk">) if you want a copy.

%************************************************************************
%*                                                                      *
<sect2>Using @make@
<label id="using-make">
<p>
<ncdx>make</ncdx>
%*                                                                      *
%************************************************************************

It is reasonably straightforward to set up a @Makefile@ to use with
GHC, assuming you name your source files the same as your modules.
Thus:

<tscreen><verb>
HC      = ghc
HC_OPTS = -cpp $(EXTRA_HC_OPTS)

SRCS = Main.lhs Foo.lhs Bar.lhs
OBJS = Main.o   Foo.o   Bar.o

.SUFFIXES : .o .hi .lhs .hc .s

cool_pgm : $(OBJS)
        rm $@
        $(HC) -o $@ $(HC_OPTS) $(OBJS)

# Standard suffix rules
.o.hi:
	@:

.lhs.o:
        $(HC) -c $< $(HC_OPTS)

.hs.o:
        $(HC) -c $< $(HC_OPTS)

# Inter-module dependencies
Foo.o Foo.hc Foo.s    : Baz.hi		# Foo imports Baz
Main.o Main.hc Main.s : Foo.hi Baz.hi	# Main imports Foo and Baz
</verb></tscreen>

(Sophisticated @make@ variants may achieve some of the above more
elegantly.  Notably, @gmake@'s pattern rules let you write the more
comprehensible:

<tscreen><verb>
%.o : %.lhs
        $(HC) -c $< $(HC_OPTS)
</verb></tscreen>

What we've shown should work with any @make@.)

Note the cheesy @.o.hi@ rule: It records the dependency of the
interface (@.hi@) file on the source.  The rule says a @.hi@ file can
be made from a @.o@ file by doing... nothing.  Which is true.

Note the inter-module dependencies at the end of the Makefile, which
take the form

<tscreen><verb>
Foo.o Foo.hc Foo.s    : Baz.hi		# Foo imports Baz
</verb></tscreen>

They tell @make@ that if any of @Foo.o@, @Foo.hc@ or @Foo.s@ have an
earlier modification date than @Baz.hi@, then the out-of-date file
must be brought up to date.  To bring it up to date, @make@ looks for
a rule to do so; one of the preceding suffix rules does the job
nicely.

Putting inter-dependencies of the form @Foo.o : Bar.hi@ into your
@Makefile@ by hand is rather error-prone.  Don't worry---never fear,
@mkdependHS@ is here! (and is distributed as part of GHC) Add the
following to your @Makefile@:

<tscreen><verb>
depend :
        mkdependHS -- $(HC_OPTS) -- $(SRCS)
</verb></tscreen>

Now, before you start compiling, and any time you change the @imports@
in your program, do @make depend@ before you do @make cool_pgm@.
@mkdependHS@ will append the needed dependencies to your @Makefile@.
@mkdependHS@ is fully describe in Section <ref name="Makefile
dependencies in Haskell: using mkdependHS" id="mkdependHS">.

A few caveats about this simple scheme:

<itemize>

<item> You may need to compile some modules explicitly to create their
interfaces in the first place (e.g., @make Bar.o@ to create @Bar.hi@).

<item> You may have to type @make@ more than once for the dependencies
to have full effect.  However, a @make@ run that does nothing
<em>does</em> mean ``everything's up-to-date.''

<item> This scheme will work with mutually-recursive modules but,
again, it may take multiple iterations to ``settle.''

</itemize>

%************************************************************************
%*                                                                      *
<sect2>How to compile mutually recursive modules
<label id="mutual-recursion">
<p>
<nidx>module system, recursion</nidx>
<nidx>recursion, between modules</nidx>
%*                                                                      *
%************************************************************************

Currently, the compiler does not have proper support for dealing with
mutually recursive modules:

<tscreen><verb>
module A where

import B

newtype A = A Int

f :: B -> A
f (B x) = A x
--------
module B where

import A

data B = B !Int

g :: A -> B
g (A x) = B x
</verb></tscreen>

When compiling either module A and B, the compiler will try (in vain)
to look for the interface file of the other. So, to get mutually
recursive modules off the ground, you need to hand write an interface
file for A or B, so as to break the loop.  These hand-written
interface files are called @hi-boot@ files, and are placed in a file
called @<module>.hi-boot@.  To import from an @hi-boot@ file instead
of the standard @.hi@ file, use the following syntax in the importing module:
<nidx>hi-boot files</nidx>
<nidx>importing, hi-boot files</nidx>

<tscreen> <verb>
import {-# SOURCE #-} A
</verb> </tscreen>

The hand-written interface need only contain the bare minimum of
information needed to get the bootstrapping process started.  For
example, it doesn't need to contain declarations for <em/everything/
that module @A@ exports, only the things required by the module that
imports @A@ recursively.

For the example at hand, the boot interface file for A would look like
the following:

<tscreen><verb>
__interface A 1 where
__exports A A f;
__import PrelBase Int;
1 newtype A = A PrelBase.Int ;
1 f :: A -> A ;
</verb></tscreen>

The syntax is essentially the same as a normal @.hi@ file
(unfortunately), but you can usually tailor an existing @.hi@ file to
make a @.hi-boot@ file.

Notice that we only put the declaration for the newtype @A@ in the
@hi-boot@ file, not the signature for @f@, since @f@ isn't used by
@B@.

The number ``1'' at the beginning of a declaration is the <em>version
number</em> of that declaration: for the purposes of @.hi-boot@ files
these can all be set to 1.  All names must be fully qualified with the
<em/original/ module that an object comes from: for example, the
reference to @Int@ in the interface for @A@ comes from @PrelBase@,
which is a module internal to GHC's prelude.  It's a pain, but that's
the way it is.

<bf>Note:</bf> This is all a temporary solution, a version of the
compiler that handles mutually recursive properly without the manual
construction of interface files, is in the works.

%************************************************************************
%*                                                                      *
<sect1>Optimisation (code improvement)
<label id="options-optimise">
<p>
<nidx>optimisation (GHC)</nidx>
<nidx>improvement, code (GHC)</nidx>
%*                                                                      *
%************************************************************************

The @-O*@ options specify convenient ``packages'' of optimisation
flags; the @-f*@ options described later on specify
<em>individual</em> optimisations to be turned on/off; the @-m*@
options specify <em>machine-specific</em> optimisations to be turned
on/off.

%----------------------------------------------------------------------
<sect2>@-O*@: convenient ``packages'' of optimisation flags.
<label id="optimise-pkgs">
<p>
<nidx>-O options</nidx>

There are <em>many</em> options that affect the quality of code
produced by GHC.  Most people only have a general goal, something like
``Compile quickly'' or ``Make my program run like greased lightning.''
The following ``packages'' of optimisations (or lack thereof) should
suffice.

Once you choose a @-O*@ ``package,'' stick with it---don't chop and
change.  Modules' interfaces <em>will</em> change with a shift to a new
@-O*@ option, and you may have to recompile a large chunk of all
importing modules before your program can again be run
safely (see Section <ref name="The recompilation checker" id="recomp">).

<descrip>
<tag>No @-O*@-type option specified:</tag>
<nidx>-O* not specified</nidx>
This is taken to mean: ``Please compile quickly; I'm not over-bothered
about compiled-code quality.''  So, for example: @ghc -c Foo.hs@

<tag>@-O@ or @-O1@:</tag>
<nidx>-O option</nidx>
<nidx>-O1 option</nidx>
<nidx>optimise normally</nidx>
Means: ``Generate good-quality code without taking too long about it.''
Thus, for example: @ghc -c -O Main.lhs@

<tag>@-O2@:</tag>
<nidx>-O2 option</nidx>
<nidx>optimise aggressively</nidx>
Means: ``Apply every non-dangerous optimisation, even if it means
significantly longer compile times.''

The avoided ``dangerous'' optimisations are those that can make
runtime or space <em>worse</em> if you're unlucky.  They are
normally turned on or off individually.

At the moment, @-O2@ is <em>unlikely</em> to produce
better code than @-O@.

<tag>@-O2-for-C@:</tag>
<nidx>-O2-for-C option</nidx>
<nidx>gcc, invoking with -O2</nidx>

Says to run GCC with @-O2@, which may be worth a few percent in
execution speed.  Don't forget @-fvia-C@, lest you use the native-code
generator and bypass GCC altogether!

<tag>@-Onot@:</tag>
<nidx>-Onot option</nidx>
<nidx>optimising, reset</nidx>

This option will make GHC ``forget'' any @-O@ish options it has seen so
far.  Sometimes useful; for example: @make all EXTRA_HC_OPTS=-Onot@.

<tag>@-Ofile <file>@:</tag>
<nidx>-Ofile &lt;file&gt; option</nidx>
<nidx>optimising, customised</nidx>

For those who need <em>absolute</em> control over <em>exactly</em>
what options are used (e.g., compiler writers, sometimes :-), a list
of options can be put in a file and then slurped in with @-Ofile@.

In that file, comments are of the @#@-to-end-of-line variety; blank
lines and most whitespace is ignored.

Please ask if you are baffled and would like an example of @-Ofile@!
</descrip>

At Glasgow, we don't use a @-O*@ flag for day-to-day work.  We use
@-O@ to get respectable speed; e.g., when we want to measure
something.  When we want to go for broke, we tend to use @-O -fvia-C
-O2-for-C@ (and we go for lots of coffee breaks).

The easiest way to see what @-O@ (etc.) ``really mean'' is to run with
@-v@, then stand back in amazement.  Alternatively, just look at the
@HsC_minus<blah>@ lists in the @ghc@ driver script.

%----------------------------------------------------------------------
<sect2>@-f*@: platform-independent flags
<p>
<nidx>-f* options (GHC)</nidx>
<nidx>-fno-* options (GHC)</nidx>

Flags can be turned <em>off</em> individually.  (NB: I hope you have a
good reason for doing this....) To turn off the @-ffoo@ flag, just use
the @-fno-foo@ flag.<nidx>-fno-&lt;opt&gt; anti-option</nidx> So, for
example, you can say @-O2 -fno-strictness@, which will then drop out
any running of the strictness analyser.

The options you are most likely to want to turn off are:
@-fno-strictness@<nidx>-fno-strictness option</nidx> (strictness
analyser [because it is sometimes slow]),
@-fno-specialise@<nidx>-fno-specialise option</nidx> (automatic
specialisation of overloaded functions [because it makes your code
bigger]) [US spelling also accepted], and
@-fno-update-analysis@<nidx>-fno-update-analysis option</nidx> (update
analyser, because it sometimes takes a <em>long</em> time).  This one
is only enabled with -O2 anyway.

Should you wish to turn individual flags <em>on</em>, you are advised
to use the @-Ofile@ option, described above.  Because the order in
which optimisation passes are run is sometimes crucial, it's quite
hard to do with command-line options.

Here are some ``dangerous'' optimisations you <em>might</em> want to try:
<descrip>
%------------------------------------------------------------------
<tag>@-fvia-C@:</tag>
<nidx>-fvia-C option</nidx>
<nidx>native code generator, turning off</nidx>

Compile via C, and don't use the native-code generator.  (There are
many cases when GHC does this on its own.)  You might pick up a little
bit of speed by compiling via C.  If you use @_ccall_gc_@s or
@_casm_@s, you probably <em>have to</em> use @-fvia-C@.

The lower-case incantation, @-fvia-c@, is synonymous.

Compiling via C will probably be slower (in compilation time) than
using GHC's native code generator.

<tag>@-funfolding-interface-threshold<n>@:</tag>
<nidx>-funfolding-interface-threshold option</nidx>
<nidx>inlining, controlling</nidx>
<nidx>unfolding, controlling</nidx>
(Default: 30) By raising or lowering this number, you can raise or
lower the amount of pragmatic junk that gets spewed into interface
files.  (An unfolding has a ``size'' that reflects the cost in terms
of ``code bloat'' of expanding that unfolding in another module.  A
bigger function would be assigned a bigger cost.)

<tag>@-funfolding-creation-threshold<n>@:</tag>
<nidx>-funfolding-creation-threshold option</nidx>
<nidx>inlining, controlling</nidx>
<nidx>unfolding, controlling</nidx>
(Default: 30) This option is similar to
@-funfolding-interface-threshold@, except that it governs unfoldings
within a single module.  Increasing this figure is more likely to
result in longer compile times than faster code.  The next option is
more useful:

<tag>@-funfolding-use-threshold<n>@:</tag>
<nidx>-funfolding-use-threshold option</nidx>
<nidx>inlining, controlling</nidx>
<nidx>unfolding, controlling</nidx>
(Default: 8) This is the magic cut-off figure for unfolding: below
this size, a function definition will be unfolded at the call-site,
any bigger and it won't.  The size computed for a function depends on
two things: the actual size of the expression minus any discounts that
apply (see @-funfolding-con-discount@).

<tag>@-funfolding-con-discount<n>@:</tag>
<nidx>-funfolding-con-discount option</nidx>
<nidx>inlining, controlling</nidx>
<nidx>unfolding, controlling</nidx>
(Default: 2) If the compiler decides that it can eliminate some
computation by performing an unfolding, then this is a discount factor
that it applies to the funciton size before deciding whether to unfold
it or not.

OK, folks, these magic numbers `30', `8', and '2' are mildly
arbitrary; they are of the ``seem to be OK'' variety.  The `8' is the
more critical one; it's what determines how eager GHC is about
expanding unfoldings.

<tag>@-funbox-strict-fields@:</tag>
<nidx>-funbox-strict-fields option</nidx>
<nidx>strict constructor fields</nidx>
<nidx>constructor fields, strict</nidx>

This option causes all constructor fields which are marked strict
(i.e. ``!'') to be unboxed or unpacked if possible.  For example:

<tscreen><verb>
data T = T !Float !Float
</verb></tscreen>

will create a constructor @T@ containing two unboxed floats if the
@-funbox-strict-fields@ flag is given.  This may not always be an
optimisation: if the @T@ constructor is scrutinised and the floats
passed to a non-strict function for example, they will have to be
reboxed (this is done automatically by the compiler).

This option should only be used in conjunction with @-O@, in order to
expose unfoldings to the compiler so the reboxing can be removed as
often as possible.  For example:

<tscreen><verb>
f :: T -> Float
f (T f1 f2) = f1 + f2
</verb></tscreen>

The compiler will avoid reboxing @f1@ and @f2@ by inlining @+@ on
floats, but only when @-O@ is on.

Any single-constructor data is eligible for unpacking; for example

<tscreen><verb>
data T = T !(Int,Int)
</verb></tscreen>

will store the two @Int@s directly in the @T@ constructor, by flattening
the pair.  Multi-level unpacking is also supported:

<tscreen><verb>
data T = T !S
data S = S !Int !Int
</verb></tscreen>

will store two unboxed @Int#@s directly in the @T@ constructor.

<tag>@-fsemi-tagging@:</tag>
This option (which <em>does not work</em> with the native-code generator)
tells the compiler to add extra code to test for already-evaluated
values.  You win if you have lots of such values during a run of your
program, you lose otherwise.  (And you pay in extra code space.)

We have not played with @-fsemi-tagging@ enough to recommend it.
(For all we know, it doesn't even work anymore...  Sigh.)
</descrip>

%----------------------------------------------------------------------
<sect2>@-m*@: platform-specific flags
<p>
<nidx>-m* options (GHC)</nidx>
<nidx>platform-specific options</nidx>
<nidx>machine-specific options</nidx>

Some flags only make sense for particular target platforms.

<descrip>
<tag>@-mv8@:</tag>
(SPARC machines)<nidx>-mv8 option (SPARC only)</nidx>
Means to pass the like-named option to GCC; it says to use the
Version 8 SPARC instructions, notably integer multiply and divide.
The similiar @-m*@ GCC options for SPARC also work, actually.

<tag>@-mlong-calls@:</tag>
(HPPA machines)<nidx>-mlong-calls option (HPPA only)</nidx>
Means to pass the like-named option to GCC.  Required for Very Big
modules, maybe.  (Probably means you're in trouble...)

<tag>@-monly-[32]-regs@:</tag>
(iX86 machines)<nidx>-monly-N-regs option (iX86 only)</nidx>
GHC tries to ``steal'' four registers from GCC, for performance
reasons; it almost always works.  However, when GCC is compiling some
modules with four stolen registers, it will crash, probably saying:
<tscreen><verb>
Foo.hc:533: fixed or forbidden register was spilled.
This may be due to a compiler bug or to impossible asm
statements or clauses.
</verb></tscreen>
Just give some registers back with @-monly-N-regs@.  Try `3' first,
then `2'.  If `2' doesn't work, please report the bug to us.
</descrip>

%----------------------------------------------------------------------
<sect2>Code improvement by the C compiler.
<label id="optimise-C-compiler">
<p>
<nidx>optimisation by GCC</nidx>
<nidx>GCC optimisation</nidx>

The C~compiler (GCC) is run with @-O@ turned on.  (It has
to be, actually).

If you want to run GCC with @-O2@---which may be worth a few
percent in execution speed---you can give a
@-O2-for-C@<nidx>-O2-for-C option</nidx> option.

%************************************************************************
%*                                                                      *
<sect1>Options related to a particular phase
<label id="options-phases">
<p>
%*                                                                      *
%************************************************************************

<sect2> The C pre-processor
<label id="c-pre-processor">
<p>
<nidx>pre-processing: cpp</nidx>
<nidx>C pre-processor options</nidx>
<nidx>cpp, pre-processing with</nidx>

The C pre-processor @cpp@ is run over your Haskell code only if the
@-cpp@ option <nidx>-cpp option</nidx> is given.  Unless you are
building a large system with significant doses of conditional
compilation, you really shouldn't need it.
<descrip>
<tag>@-D<foo>@:</tag>
<nidx>-D&lt;name&gt; option</nidx>
Define macro @<foo>@ in the usual way.  NB: does <em>not</em> affect
@-D@ macros passed to the C~compiler when compiling via C!  For those,
use the @-optc-Dfoo@ hack... (see Section <ref name="Forcing options
to a particular phase." id="forcing-options-through">).

<tag>@-U<foo>@:</tag>
<nidx>-U&lt;name&gt; option</nidx>
Undefine macro @<foo>@ in the usual way.

<tag>@-I<dir>@:</tag>
<nidx>-I&lt;dir&gt; option</nidx>
Specify a directory in which to look for @#include@ files, in
the usual C way.
</descrip>

The @ghc@ driver pre-defines several macros:
<descrip>
<tag>@__HASKELL98__@:</tag>
<nidx>__HASKELL98__</nidx>
If defined, this means that GHC supports the language
defined by the Haskell 98 report.

NB. This macro is <em/only/ set when pre-processing Haskell source
(ie. @.hs@ or @.lhs@ files).

<tag>@__HASKELL1__@:</tag>
<nidx>__HASKELL1__ macro</nidx>
If defined to <em/n/, that means GHC supports the
Haskell language defined in the Haskell report version <em/1.n/.
Currently 5.

NB. As with <tt/__HASKELL98__/, this macro is <em/only/ set when
pre-processing Haskell source (ie. @.hs@ or @.lhs@ files).

<tag>@__GLASGOW_HASKELL__@:</tag>
<nidx>__GLASGOW_HASKELL__ macro</nidx>
For version <em/n/ of the GHC system, this will be @#define@d to
<em/100n/.  So, for version 4.00, it is 400.

With any luck, @__GLASGOW_HASKELL__@ will be undefined in all other
implementations that support C-style pre-processing.

(For reference: the comparable symbols for other systems are:
@__HUGS__@ for Hugs and @__HBC__@ for Chalmers.)

NB. This macro is set when pre-processing both Haskell source and C
source, including the C source generated from a Haskell module
(ie. @.hs@, @.lhs@, @.c@ and @.hc@ files).

<tag>@__CONCURRENT_HASKELL__@:</tag>
<nidx>__CONCURRENT_HASKELL__ macro</nidx>
This symbol is defined when pre-processing Haskell (input) and
pre-processing C (GHC output).  Since GHC from verion 4.00 now
supports concurrent haskell by default, this symbol is always defined.

<tag>@__PARALLEL_HASKELL__@:</tag>
<nidx>__PARALLEL_HASKELL__ macro</nidx>
Only defined when @-parallel@ is in use!  This symbol is defined when
pre-processing Haskell (input) and pre-processing C (GHC output).
</descrip>

Options other than the above can be forced through to the C
pre-processor with the @-opt@ flags (see
Section <ref name="Forcing options to a particular phase." id="forcing-options-through">).

A small word of warning: @-cpp@ is not friendly to ``string
gaps''.<nidx>-cpp vs string gaps</nidx><nidx>string gaps vs
-cpp</nidx>.  In other words, strings such as the following:

<tscreen><verb>
	strmod = "\
	\ p \
	\ "
</verb></tscreen>

don't work with @-cpp@; @/usr/bin/cpp@ elides the
backslash-newline pairs.

However, it appears that if you add a space at the end of the line,
then @cpp@ (at least GNU @cpp@ and possibly other @cpp@s)
leaves the backslash-space pairs alone and the string gap works as
expected.

%************************************************************************
%*                                                                      *
<sect2>Options affecting the C compiler (if applicable)
<label id="options-C-compiler">
<p>
<nidx>include-file options</nidx>
<nidx>C compiler options</nidx>
<nidx>GCC options</nidx>
%*                                                                      *
%************************************************************************

At the moment, quite a few common C-compiler options are passed on
quietly to the C compilation of Haskell-compiler-generated C files.
THIS MAY CHANGE.  Meanwhile, options so sent are:

<tabular ca="ll">
@-ansi@      | do ANSI C (not K&amp;R) @@
@-pedantic@  | be so@@
@-dgcc-lint@ | (hack) short for ``make GCC very paranoid''@@
</tabular>
<nidx>-ansi option (for GCC)</nidx>
<nidx>-pedantic option (for GCC)</nidx>
<nidx>-dgcc-lint option (GCC paranoia)</nidx>

If you are compiling with lots of @ccalls@, etc., you may need to
tell the C~compiler about some @#include@ files.  There is no real
pretty way to do this, but you can use this hack from the
command-line:

<tscreen><verb>
% ghc -c '-#include <X/Xlib.h>' Xstuff.lhs
</verb></tscreen>


%************************************************************************
%*                                                                      *
<sect2>Linking and consistency-checking
<label id="options-linker">
<p>
<nidx>linker options</nidx>
<nidx>ld options</nidx>
%*                                                                      *
%************************************************************************

GHC has to link your code with various libraries, possibly including:
user-supplied, GHC-supplied, and system-supplied (@-lm@ math
library, for example).

<descrip>
<tag>@-l<FOO>@:</tag>
<nidx>-l&lt;lib&gt; option</nidx>
Link in a library named @lib<FOO>.a@ which resides somewhere on the
library directories path.

Because of the sad state of most UNIX linkers, the order of such
options does matter.  Thus: @ghc -lbar *.o@ is almost certainly
wrong, because it will search @libbar.a@ <em>before</em> it has
collected unresolved symbols from the @*.o@ files.
@ghc *.o -lbar@ is probably better.

The linker will of course be informed about some GHC-supplied
libraries automatically; these are:

<tabular ca="ll">
<bf>-l equivalent</bf> | <bf>description</bf> @@
@@
@-lHSrts,-lHSclib@ | basic runtime libraries @@
@-lHS@         | standard Prelude library @@
@-lHS_cbits@  | C support code for standard Prelude library @@
@-lgmp@        | GNU multi-precision library (for Integers)@@
</tabular>

<nidx>-lHS library</nidx>
<nidx>-lHS_cbits library</nidx>
<nidx>-lHSrts library</nidx>
<nidx>-lgmp library</nidx>

<tag>@-syslib <name>@:</tag>
<nidx>-syslib &lt;name&gt; option</nidx>

If you are using a Haskell ``system library'' (e.g., the POSIX
library), just use the @-syslib posix@ option, and the correct code
should be linked in.

<tag>@-L<dir>@:</tag>
<nidx>-L&lt;dir&gt; option</nidx>
Where to find user-supplied libraries...  Prepend the directory
@<dir>@ to the library directories path.

<tag>@-static@:</tag>
<nidx>-static option</nidx>
Tell the linker to avoid shared libraries.

<tag>@-no-link-chk@ and @-link-chk@:</tag>
<nidx>-no-link-chk option</nidx>
<nidx>-link-chk option</nidx>
<nidx>consistency checking of executables</nidx>
By default, immediately after linking an executable, GHC verifies that
the pieces that went into it were compiled with compatible flags; a
``consistency check''.
(This is to avoid mysterious failures caused by non-meshing of
incompatibly-compiled programs; e.g., if one @.o@ file was compiled
for a parallel machine and the others weren't.)  You may turn off this
check with @-no-link-chk@.  You can turn it (back) on with
@-link-chk@ (the default).

<tag><tt>-no-hs-main</tt>:</tag>
<nidx>-no-hs-main option</nidx>
<nidx>linking Haskell libraries with foreign code</nidx>

In the event you want to include ghc-compiled code as part of another
(non-Haskell) program, the RTS will not be supplying its definition of
<tt/main()/ at link-time, you will have to. To signal that to the
driver script when linking, use <tt/-no-hs-main/.

Notice that since the command-line passed to the linker is rather
involved, you probably want to use the ghc driver script to do the
final link of your `mixed-language' application. This is not a
requirement though, just try linking once with <tt/-v/ on to see what
options the driver passes through to the linker.

</descrip>

%************************************************************************
%*                                                                      *
<sect1>Using Concurrent Haskell
<p>
<nidx>Concurrent Haskell---use</nidx>
%*                                                                      *
%************************************************************************

GHC (as of version 4.00) supports Concurrent Haskell by default,
without requiring a special option or libraries compiled in a certain
way.  To get access to the support libraries for Concurrent Haskell
(ie. @Concurrent@ and friends), use the @-syslib concurrent@ option.

Three RTS options are provided for modifying the behaviour of the
threaded runtime system.  See the descriptions of @-C[<us>]@, @-q@,
and @-t<num>@ in Section <ref name="RTS options for
Concurrent/Parallel Haskell" id="parallel-rts-opts">.

Concurrent Haskell is described in more detail in Section <ref
name="Concurrent and Parallel Haskell" id="concurrent-and-parallel">.

%************************************************************************
%*                                                                      *
<sect1>Using Parallel Haskell
<p>
<nidx>Parallel Haskell---use</nidx>
%*                                                                      *
%************************************************************************

[You won't be able to execute parallel Haskell programs unless PVM3
(Parallel Virtual Machine, version 3) is installed at your site.]

To compile a Haskell program for parallel execution under PVM, use the
@-parallel@ option,<nidx>-parallel option</nidx> both when compiling
<em>and linking</em>.  You will probably want to @import Parallel@
into your Haskell modules.

To run your parallel program, once PVM is going, just invoke it ``as
normal''.  The main extra RTS option is @-N<n>@, to say how many
PVM ``processors'' your program to run on.  (For more details of
all relevant RTS options, please see Section <ref name="RTS options for Concurrent/Parallel Haskell" id="parallel-rts-opts">.)

In truth, running Parallel Haskell programs and getting information
out of them (e.g., parallelism profiles) is a battle with the vagaries of
PVM, detailed in the following sections.

%************************************************************************
%*                                                                      *
<sect2>Dummy's guide to using PVM
<p>
<nidx>PVM, how to use</nidx>
<nidx>Parallel Haskell---PVM use</nidx>
%*                                                                      *
%************************************************************************

Before you can run a parallel program under PVM, you must set the
required environment variables (PVM's idea, not ours); something like,
probably in your @.cshrc@ or equivalent:
<tscreen><verb>
setenv PVM_ROOT /wherever/you/put/it
setenv PVM_ARCH `$PVM_ROOT/lib/pvmgetarch`
setenv PVM_DPATH $PVM_ROOT/lib/pvmd
</verb></tscreen>

Creating and/or controlling your ``parallel machine'' is a purely-PVM
business; nothing specific to Parallel Haskell.

You use the @pvm@<nidx>pvm command</nidx> command to start PVM on your
machine.  You can then do various things to control/monitor your
``parallel machine;'' the most useful being:

\begin{tabular}{ll}
@Control-D@ & exit @pvm@, leaving it running \\
@halt@ & kill off this ``parallel machine'' \& exit \\
@add <host>@ & add @<host>@ as a processor \\
@delete <host>@ & delete @<host>@ \\
@reset@	& kill what's going, but leave PVM up \\
@conf@       & list the current configuration \\
@ps@         & report processes' status \\
@pstat <pid>@ & status of a particular process \\
\end{tabular}

The PVM documentation can tell you much, much more about @pvm@!

%************************************************************************
%*                                                                      *
<sect2>Parallelism profiles
<p>
<nidx>parallelism profiles</nidx>
<nidx>profiles, parallelism</nidx>
<nidx>visualisation tools</nidx>
%*                                                                      *
%************************************************************************

With Parallel Haskell programs, we usually don't care about the
results---only with ``how parallel'' it was!  We want pretty pictures.

Parallelism profiles (\`a la @hbcpp@) can be generated with the
@-q@<nidx>-q RTS option (concurrent, parallel)</nidx> RTS option.  The
per-processor profiling info is dumped into files named
@<full-path><program>.gr@.  These are then munged into a PostScript picture,
which you can then display.  For example, to run your program
@a.out@ on 8 processors, then view the parallelism profile, do:

<tscreen><verb>
% ./a.out +RTS -N8 -q
% grs2gr *.???.gr > temp.gr	# combine the 8 .gr files into one
% gr2ps -O temp.gr		# cvt to .ps; output in temp.ps
% ghostview -seascape temp.ps	# look at it!
</verb></tscreen>

The scripts for processing the parallelism profiles are distributed
in @ghc/utils/parallel/@.

%************************************************************************
%*                                                                      *
<sect2>Other useful info about running parallel programs
<p>
%*                                                                      *
%************************************************************************

The ``garbage-collection statistics'' RTS options can be useful for
seeing what parallel programs are doing.  If you do either
@+RTS -Sstderr@<nidx>-Sstderr RTS option</nidx> or @+RTS -sstderr@, then
you'll get mutator, garbage-collection, etc., times on standard
error. The standard error of all PE's other than the `main thread'
appears in @/tmp/pvml.nnn@, courtesy of PVM.

Whether doing @+RTS -Sstderr@ or not, a handy way to watch
what's happening overall is: @tail -f /tmp/pvml.nnn@.

%************************************************************************
%*                                                                      *
<sect2>RTS options for Concurrent/Parallel Haskell
<label id="parallel-rts-opts">
<p>
<nidx>RTS options, concurrent</nidx>
<nidx>RTS options, parallel</nidx>
<nidx>Concurrent Haskell---RTS options</nidx>
<nidx>Parallel Haskell---RTS options</nidx>
%*                                                                      *
%************************************************************************

Besides the usual runtime system (RTS) options
(Section <ref name="Running a compiled program" id="runtime-control">), there are a few options particularly
for concurrent/parallel execution.

<descrip>
<tag>@-N<N>@:</tag>
<nidx>-N&lt;N&gt; RTS option (parallel)</nidx>
(PARALLEL ONLY) Use @<N>@ PVM processors to run this program;
the default is 2.

<tag>@-C[<us>]@:</tag>
<nidx>-C&lt;us&gt; RTS option</nidx>
Sets the context switch interval to @<us>@ microseconds.  A context
switch will occur at the next heap allocation after the timer expires.
With @-C0@ or @-C@, context switches will occur as often as
possible (at every heap allocation).  By default, context switches
occur every 10 milliseconds.  Note that many interval timers are only
capable of 10 millisecond granularity, so the default setting may be
the finest granularity possible, short of a context switch at every
heap allocation.

[NOTE: this option currently has no effect (version 4.00).  Context
switches happen when the current heap block is full, i.e. every 4k of
allocation].

<tag>@-q[v]@:</tag>
<nidx>-q RTS option</nidx>
(PARALLEL ONLY) Produce a quasi-parallel profile of thread activity,
in the file @<program>.qp@.  In the style of @hbcpp@, this profile
records the movement of threads between the green (runnable) and red
(blocked) queues.  If you specify the verbose suboption (@-qv@), the
green queue is split into green (for the currently running thread
only) and amber (for other runnable threads).  We do not recommend
that you use the verbose suboption if you are planning to use the
@hbcpp@ profiling tools or if you are context switching at every heap
check (with @-C@).

<tag>@-t<num>@:</tag>
<nidx>-t&lt;num&gt; RTS option</nidx>
(PARALLEL ONLY) Limit the number of concurrent threads per processor
to @<num>@.  The default is 32.  Each thread requires slightly over 1K
<em>words</em> in the heap for thread state and stack objects.  (For
32-bit machines, this translates to 4K bytes, and for 64-bit machines,
8K bytes.)

<tag>@-d@:</tag>
<nidx>-d RTS option (parallel)</nidx>
(PARALLEL ONLY) Turn on debugging.  It pops up one xterm (or GDB, or
something...) per PVM processor.  We use the standard @debugger@
script that comes with PVM3, but we sometimes meddle with the
@debugger2@ script.  We include ours in the GHC distribution,
in @ghc/utils/pvm/@.

<tag>@-e<num>@:</tag>
<nidx>-e&lt;num&gt; RTS option (parallel)</nidx>
(PARALLEL ONLY) Limit the number of pending sparks per processor to
@<num>@. The default is 100. A larger number may be appropriate if
your program generates large amounts of parallelism initially.

<tag>@-Q<num>@:</tag>
<nidx>-Q&lt;num&gt; RTS option (parallel)</nidx>
(PARALLEL ONLY) Set the size of packets transmitted between processors
to @<num>@. The default is 1024 words. A larger number may be
appropriate if your machine has a high communication cost relative to
computation speed.
</descrip>