4c6bc43dcf625af75209a6bfc2aeed03c5231774
[ghc-hetmet.git] / ghc / docs / users_guide / faq.sgml
1 <chapter id="faq">
2   <title>GHC FAQ</title>
3
4   <para>This section has the answers to questions that get asked
5   regularly on the GHC mailing lists, in no particular order.  Please
6   let us know if you think there's a question/answer that should be
7   added here.</para>
8     
9   <variablelist>
10     <varlistentry>
11       <term>How do I port GHC to platform X?</term>
12       <listitem>
13         <para>There are two distinct possibilities: either</para>
14         <itemizedlist>
15           <listitem>
16             <para>The hardware architecture for your system is already
17             supported by GHC, but you're running an OS that isn't
18             supported (or perhaps has been supported in the past, but
19             currently isn't).  This is the easiest type of porting
20             job, but it still requires some careful
21             bootstrapping.</para>
22           </listitem>
23
24           <listitem>
25             <para>Your system's hardware architecture isn't supported
26             by GHC.  This will be a more difficult port (though by
27             comparison perhaps not as difficult as porting
28             gcc).</para>
29           </listitem>
30         </itemizedlist>
31
32         <para>Both ways require you to bootrap from intermediate
33         <literal>HC</literal> files: these are the stylised C files
34         generated by GHC when it compiles Haskell source.  Basically
35         the idea is to take the HC files for GHC itself to the target
36         machine and compile them with <literal>gcc</literal> to get a
37         working GHC, and go from there.</para>
38
39         <para>The <ulink
40         url="http://www.haskell.org/ghc/latest/building/building-guide.html">Building
41         Guide</ulink> has all the details on how to bootstrap GHC on a
42         new platform.</para>
43
44       </listitem>
45     </varlistentry>
46     
47     <varlistentry>
48       <term>Do I have to recompile all my code if I upgrade
49       GHC?</term>
50       <listitem>
51         <para>Yes.  There are two reasons for this:</para>
52         <itemizedlist>
53           <listitem>
54             <para>GHC does a lot of cross-module optimisation, so
55             compiled code will include parts of the libraries it was
56             compiled against (including the Prelude), so will be
57             deeply tied to the actual version of those libraries it
58             was compiled against.  When you upgrade GHC, the libraries
59             may change; even if the external interface of the
60             libraries doesn't change, sometimes internal details may
61             change because GHC optimised the code in the library
62             differently.</para>
63           </listitem>
64           <listitem>
65             <para>We sometimes change the ABI (application binary
66             interface) between versions of GHC.  Code compiled with
67             one version of GHC is not necessarily compatible with code
68             compiled by a different version, even if you arrange to
69             keep the same libraries.</para>
70           </listitem>
71         </itemizedlist>
72       </listitem>
73     </varlistentry>
74
75     <varlistentry>
76       <term>Why doesn't GHC use shared libraries?</term>
77       <listitem>
78         <para>The subject of shared libraries has come up several
79         times in the past &mdash; take a look through the mailing-list
80         archives for some of the previous discussions. The upshot is
81         that shared libraries wouldn't really buy much unless you
82         really need to save the disk space: in all other
83         considerations, static linking comes out better.</para>
84           
85         <para>Unfortunately GHC-compiled libraries are very tightly
86         coupled, which means it's unlikely you'd be able to swap out a
87         shared library for a newer version unless it was compiled with
88         <emphasis>exactly</emphasis> the same compiler and set of
89         libraries as the old version.</para>
90       </listitem>
91     </varlistentry>
92
93     <varlistentry>
94       <term>I can't get string gaps to work</term>
95       <listitem>
96         <para>If you're also using CPP, beware of the known pitfall
97         with string gaps mentioned in <xref
98         linkend="cpp-string-gaps">.</para>
99       </listitem>
100     </varlistentry>
101
102     <varlistentry>
103       <term>GHCi complains about missing symbols like
104       <literal>CC_LIST</literal> when loading a previously compiled .o
105       file.</term>
106       <listitem>
107         <para> This probably means the .o files in question were
108         compiled for profiling (with <option>-prof</option>).  Workaround:
109         recompile them without profiling.  We really ought to detect
110         this situation and give a proper error message.</para>
111       </listitem>
112     </varlistentry>
113
114     <varlistentry>
115       <term>Linking a program causes the following error on Linux:
116       <literal>/usr/bin/ld: cannot open -lgmp: No such file or
117       directory</literal></term>
118       <listitem>
119         <para>The problem is that your system doesn't have the GMP
120         library installed.  If this is a RedHat distribution, install
121         the RedHat-supplied <literal>gmp-devel</literal> package, and
122         the <literal>gmp</literal> package if you don't already have
123         it.  There have been reports that installing the RedHat
124         packages also works for SuSE (SuSE don't supply a shared gmp
125         library).</para>
126       </listitem>
127     </varlistentry>
128
129     <varlistentry>
130       <term>I Can't run GHCi on Linux, because it complains about a
131       missing <literal>libreadline.so.3</literal>.</term>
132       <listitem>
133         <para>The "correct" fix for this problem is to install the
134         correct RPM for the particular flavour of Linux on your
135         machine.  If this isn't an option, however, there is a hack
136         that might work: make a symbolic link from
137         <filename>libreadline.so.4</filename> to
138         <filename>libreadline.so.3</filename> in
139         <literal>/usr/lib</literal>.  We tried this on a SuSE 7.1 box
140         and it seemed to work, but YMMV.</para>
141       </listitem>
142     </varlistentry>
143
144     <varlistentry>
145       <term>Solaris users may sometimes get link errors due to
146       libraries needed by GNU Readline.</term>
147       <listitem>
148         <para>We suggest you try linking in some combination of the
149         <literal>termcap</literal>, <literal>curses</literal> and
150         <literal>ncurses</literal> libraries, by giving
151         <literal>-ltermcap</literal>, <literal>-lcurses</literal> and
152         <literal>-lncurses</literal> respectively.  If you encounter
153         this problem, we would appreciate feedback on it, since we
154         don't fully understand what's going on here.</para>
155       </listitem>
156     </varlistentry>
157     
158     <varlistentry>
159       <term>When I try to start ghci (probably one I compiled myself)
160       it says <literal>ghc-5.02: not built for interactive
161       use</literal></term>
162       <listitem>
163         <para>To build a working ghci, you need to build GHC 5.02 with
164         itself; the above message appears if you build it with 4.08.X,
165         for example.  It'll still work fine for batch-mode
166         compilation, though.  Note that you really must build with
167         exactly the same version of the compiler.  Building 5.02 with
168         5.00.2, for example, may or may not give a working interactive
169         system; it probably won't, and certainly isn't supported.
170         Note also that you can build 5.02 with any older compiler,
171         back to 4.08.1, if you don't want a working interactive
172         system; that's OK, and supported.</para>
173       </listitem>
174     </varlistentry>
175    
176     <varlistentry>
177       <term>When I use a foreign function that takes or returns a
178       float, it gives the wrong answer, or crashes.</term>
179       <listitem>
180         <para>You should use the <option>-#include</option> option to
181         bring the correct prototype into scope (see <xref
182         linkend="options-C-compiler">).</para>
183       </listitem>
184     </varlistentry>
185
186     <varlistentry>
187       <term>My program that uses a really large heap crashes on
188       Windows.</term>
189       <listitem>
190         <para>For utterly horrible reasons, programs that use more
191         than 128Mb of heap won't work when compiled dynamically on
192         Windows (they should be fine statically compiled).</para>
193       </listitem>
194     </varlistentry>
195
196     <varlistentry>
197       <term>GHC doesn't like filenames containing
198       <literal>+</literal>.</term>
199       <listitem>
200         <para>Indeed not. You could change <literal>+</literal> to
201         <literal>p</literal> or <literal>plus</literal>.</para>
202       </listitem>
203     </varlistentry>
204
205     <varlistentry>
206       <term>When I open a FIFO (named pipe) and try to read from it, I
207       get EOF immediately.</term>
208       <listitem>
209         <para>This is a consequence of the fact that GHC opens the
210         FIFO in non-blocking mode.  The behaviour varies from OS to
211         OS: on Linux and Solaris you can wait for a writer by doing an
212         explicit <literal>threadWaitRead</literal> on the file
213         descriptor (gotten from <literal>Posix.handleToFd</literal>)
214         before the first read, but this doesn't work on FreeBSD
215         (although rumour has it that recent versions of FreeBSD
216         changed the behavour to match other OSs).  A workaround for
217         all systems is to open the FIFO for writing yourself, before
218         (or at the same time as) opening it for reading.</para>
219       </listitem>
220     </varlistentry>
221
222     <varlistentry>
223       <term>When I <literal>foreign import</literal> a function that
224       returns <literal>char</literal> or <literal>short</literal>, I
225       get garbage back.</term>
226       <listitem>
227         <para>This is a known bug in GHC versions prior to 5.02.2.
228         GHC doesn't mask out the more significant bits of the result.
229         It doesn't manifest with gcc 2.95, but apparently shows up
230         with g++ and gcc 3.0.</para>
231       </listitem>
232     </varlistentry>
233
234     <varlistentry>
235       <term>My program is failing with <literal>head []</literal>, or
236       an array bounds error, or some other random error, and I have no
237       idea how to find the bug.  Can you help?</term>
238
239       <listitem>
240         <para>Compile your program with <literal>-prof
241 -auto-all</literal> (make sure you have the profiling libraries
242 installed), and run it with <literal>+RTS -xc -RTS</literal> to get a
243 &ldquo;stack trace&rdquo; at the point at which the exception was
244 raised.  See <xref linkend="rts-options-debugging"> for more
245 details.</para>
246       </listitem>
247     </varlistentry>
248
249     <varlistentry>
250       <term>How do I increase the heap size permanently for a given
251       binary?</term>
252       <listitem>
253         <para>See <xref linkend="rts-hooks">.</para>
254       </listitem>
255     </varlistentry>
256
257     <varlistentry>
258       <term>I'm trying to compile my program for parallel execution
259       with the <option>-parallel</option>, and GHC complains with an
260       error like &ldquo;failed to load interface file for
261       Prelude&rdquo;.</term>
262       <listitem>
263         <para>GHC doesn't ship with support for parallel execution,
264         that support is provided separately by the <ulink
265                                                           url="http://www.macs.hw.ac.uk/~dsg/gph/">GPH</ulink> project.</para>
266       </listitem>
267     </varlistentry>
268
269     <varlistentry>
270       <term>When is it safe to use
271       <literal>unsafePerformIO</literal>?</term>
272       <listitem>
273         <para>We'll give two answers to this question, each of which
274         may be helpful.  These criteria are not rigorous in any real
275         sense (you'd need a formal semantics for Haskell in order to
276         give a proper answer to this question), but should give you a
277         feel for the kind of things you can and cannot do with
278         <literal>unsafePerformIO</literal>.</para>
279         
280         <itemizedlist>
281           <listitem>
282             <para>It is safe to implement a function or API using
283             <literal>unsafePerformIO</literal> if you could imagine
284             also implementing the same function or API in Haskell
285             without using <literal>unsafePerformIO</literal> (forget
286             about efficiency, just consider the semantics).</para>
287           </listitem>
288
289           <listitem>
290             <para>In pure Haskell, the value of a function depends
291             only on the values of its arguments (and free variables,
292             if it has any).  If you can implement the function using
293             <literal>unsafePerformIO</literal> and still retain this
294             invariant, then you're probably using
295             <literal>unsafePerformIO</literal> in a safe way.  Note
296             that you need only consider the
297             <emphasis>observable</emphasis> values of the arguments
298             and result.</para>
299           </listitem>
300         </itemizedlist>
301         
302         <para>For more information, see <ulink
303         url="http://www.haskell.org/pipermail/glasgow-haskell-users/2002-July/003681.html">this
304         thread</ulink>.</para>
305       </listitem>
306     </varlistentry>
307
308     <varlistentry>
309       <term>Why does linking take so long?</term>
310       <listitem>
311         <para>Linking a small program should take no more than a few
312         seconds.  Larger programs can take longer, but even linking
313         GHC itself only takes 3-4 seconds on our development
314         machines.</para>
315         
316         <para>Long link times have been attributed to using Sun's
317         linker on Solaris, as compared to GNU <command>ld</command>
318         which appears to be much faster.  So if you're on a Sun box,
319         try switching to GNU <command>ld</command>.  <ulink
320         url="http://www.haskell.org/pipermail/glasgow-haskell-users/2002-November/004477.html">This
321         article</ulink> from the mailing list has more
322         information.</para>
323       </listitem>
324     </varlistentry>
325
326     <varlistentry> 
327       <term>If I explicitely set the buffering on a Handle to
328       "NoBuffering" I'm not able to enter EOF by typing
329       "Ctrl-D".</term>
330
331       <listitem>
332         <para>This is a consequence of Unixy terminal semantics.  Unix
333         does line buffering on terminals in the kernel as part of the
334         terminal processing, unless you turn it off.  However, the
335         Ctrl-D processing is also part of the terminal processing
336         which gets turned off when the kernel line buffering is
337         disabled.  So GHC tries its best to get NoBuffering semantics
338         by turning off the kernel line buffering, but as a result you
339         lose Ctrl-D.  C'est la vie.</para>
340       </listitem>
341     </varlistentry>
342
343     <varlistentry>
344       <term>If I print out a string using <literal>putStr</literal>,
345       and then attempt to read some input using
346       <literal>hGetLine</literal>, I don't see the output from the
347       <literal>putStr</literal>.</term>
348
349       <listitem>
350         <para>The <literal>stdout</literal> handle is line-buffered by
351         default, which means that output sent to the handle is only
352         flushed when a newline (<literal>/n</literal>) is output, the
353         buffer is full, or <literal>hFlush</literal> is called on the
354         Handle.  The right way to make the text appear without sending
355         a newline is to use <literal>hFlush</literal>:</para>
356
357 <programlisting>
358   import System.IO
359   main = do
360     putStr "how are you today? "
361     hFlush stdout
362     input <- hGetLine
363     ...</programlisting>
364
365         <para>You'll probably find that the behaviour differs when
366         using GHCi: the <literal>hFlush</literal> isn't necessary to
367         make the text appear.  This is because in GHCi we turn off the
368         buffering on <literal>stdout</literal>, because this is
369         normally what you want in an interpreter: output appears as it
370         is generated.</para>
371       </listitem>
372     </varlistentry>
373
374     <varlistentry>
375       <term>I can't get finalizers to work properly.  My program
376       sometimes just prints
377       <literal>&lt;&lt;loop&gt;&gt;</literal>.</term>
378       
379       <listitem>
380         <para>Chances are that your program is trying to write a
381         message to <literal>stdout</literal> or
382         <literal>stderr</literal> in the finalizer.  Handles have
383         finalizers themselves, and since finalizers don't keep other
384         finalized values alive, the <literal>stdout</literal> and
385         <literal>stderr</literal> Handles may be finalized before your
386         finalizer runs.  If this happens, your finalizer will block on
387         the handle, and probably end up receiving a
388         <literal>NonTermination</literal> exception (which is printed
389         as <literal>&lt;&lt;loop&gt;&gt;</literal>).</para>
390       </listitem>
391     </varlistentry>
392
393     
394     <varlistentry>
395       <term>Does GHC implement any kind of extensible records?</term>
396
397       <listitem>
398         <para>No, extensible records are not implemented in GHC.
399         <ulink url="http://www.haskell.org/hugs/">Hugs</ulink>
400         implements TRex, one extensible record variant.  The problem
401         is that the record design space is large, and seems to lack
402         local optima.  And all reasonable variants break backward
403         compatibility.  As a result, nothing much happens.</para>
404       </listitem>
405     </varlistentry>
406
407     <varlistentry>
408       <term>Why do I get errors about missing include files when
409       compiling with <option>-O</option> or
410       <option>-prof</option>?</term>
411
412       <listitem>
413         <para>Certain options, such as <option>-O</option>, turn on
414         via-C compilation, instead of using the native code generator.
415         Include files named by <option>-&num;include</option> options
416         or in <literal>foreign import</literal> declarations are only
417         used in via-C compilation mode.  See <xref
418         linkend="finding-header-files"> for more details.</para>
419       </listitem>
420     </varlistentry>
421
422     <varlistentry>
423       <term>How do I compile my program for profiling without
424       overwriting the object files and <literal>hi</literal> files
425       I've already built?</term>
426       <listitem>
427         <para>You can select alternative suffixes for object files and
428         interface files, so you can have several builds of the same
429         code coexisting in the same directory.  For example, to
430         compile with profiling, you might do this:</para>
431         
432         <screen>ghc --make -prof -o foo-prof -osuf p.o -hisuf p.hi Main</screen>
433         
434         <para>See <xref linkend="options-output"> for more details on
435         the <option>-osuf</option> and <option>-hisuf</option>
436         options.</para>
437       </listitem>
438     </varlistentry>
439
440   </variablelist>
441
442 </chapter>
443
444
445
446 <!-- Emacs stuff:
447      ;;; Local Variables: ***
448      ;;; mode: sgml ***
449      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
450      ;;; End: ***
451  -->