Fixed uninitialised FunBind fun_tick field
[ghc-hetmet.git] / driver / ghci-usage.txt
1 Usage:
2
3     ghci [command-line-options-and-input-files]
4
5 The kinds of input files that can be given on the command-line
6 include:
7
8   - Haskell source files (.hs or .lhs suffix)
9   - Object files (.o suffix, or .obj on Windows)
10   - Dynamic libraries (.so suffix, or .dll on Windows)
11
12 In addition, ghci accepts most of the command-line options that plain
13 GHC does.  Some of the options that are commonly used are:
14
15     -fglasgow-exts  Allow Glasgow extensions (unboxed types, etc.)
16
17     -i<dir>         Search for imported modules in the directory <dir>.
18
19     -H32m           Increase GHC's default heap size to 32m
20
21     -cpp            Enable CPP processing of source files
22
23 Full details can be found in the User's Guide, an online copy of which
24 can be found here:
25
26     http://www.haskell.org/ghc/documentation.html