cdaad9cd605ee179c6c8e57cc7315654e33ea246
[ghc-hetmet.git] / ghc / docs / users_guide / win32-dlls.sgml
1 <chapter id="win32">
2 <title>Running GHC on Win32 systems</title>
3
4 <sect1>
5 <title>
6 Starting GHC on Win32 platforms</title>
7
8 <para>
9 The installer that installs GHC on Win32 also sets up the file-suffix associations
10 for ".hs" and ".lhs" files so that double-clicking them starts <command>ghci</command>.
11 </para>
12 <para>
13 Be aware of that <command>ghc</command> and <command>ghci</command> do
14 require filenames containing spaces to be escaped using quotes:
15 <programlisting>
16   c:\ghc\bin\ghci "c:\\Program Files\\Haskell\\Project.hs"
17 </programlisting>
18 If the quotes are left off in the above command, <command>ghci</command> will
19 interpret the filename as two, "c:\\Program" and "Files\\Haskell\\Project.hs".
20 </para>
21
22 <!-- not clear whether there are current editions of Win32 OSes that
23      doesn't do this by default.
24
25 <para> Solution: don't use "Open With...", avoid spaces in file names, 
26 or fiddle with the appropriate registry setting:
27 <programlisting>
28   HKEY_CLASSES_ROOT\Unknown\shell\openas\command
29 </programlisting>
30 Notice how the "%1" argument is quoted (or not).
31 </para>
32 <para> This problem doesn't occur when double-clicking.
33 </para>
34 -->
35
36 </sect1>
37
38 <sect1>
39 <title>
40 Interacting with the terminal</title>
41
42 <para>By default GHC builds applications that open a console window when they start.
43 If you want to build a GUI-only application, with no console window, use the flag
44 <literal>-optl-mwindows</literal> in the link step.
45 </para>
46
47 <para>For some reason, Mingw ships with the <literal>readline</literal> library,
48 but not with the <literal>readline</literal> headers. As a result, GHC (like Hugs) does not
49 use <literal>readline</literal> for interactive input on Windows.
50 You can get a close simulation by using an emacs shell buffer!
51 </para>
52
53 </sect1>
54
55 <sect1>
56 <title>
57 Differences in library behaviour </title>
58
59 <para>
60 Some of the standard Haskell libraries behave slightly differently on Windows.
61
62 <itemizedlist>
63 <listitem> <para>
64 On Windows, the '<literal>^Z</literal>' character is interpreted as an
65 end-of-file character, so if you read a file containing this character
66 the file will appear to end just before it. To avoid this,
67 use <literal>IOExts.openFileEx</literal> to open a file in binary
68 (untranslated) mode or change an already opened file handle into
69 binary mode using <literal>IOExts.hSetBinaryMode</literal>. The
70 <literal>IOExts</literal> module is part of the
71 <literal>lang</literal> package.
72 </para>
73 </listitem>
74 </itemizedlist>
75 </para>
76 </sect1>
77
78 <sect1>
79 <title>
80 Using GHC (and other GHC-compiled executables) with cygwin</title>
81
82 <sect2>
83 <title>Background</title> <para>The cygwin tools aim to provide a
84 unix-style API on top of the windows libraries, to facilitate ports of
85 unix software to windows. To this end, they introduce a unix-style
86 directory hierarchy under some root directory (typically
87 <filename>/</filename> is <filename>C:\cygwin\</filename>). Moreover,
88 everything built against the cygwin API (including the cygwin tools
89 and programs compiled with cygwin's ghc) will see / as the root of
90 their file system, happily pretending to work in a typical unix
91 environment, and finding things like <filename>/bin</filename> and <filename>/usr/include</filename> without
92 ever explicitly bothering with their actual location on the windows
93 system (probably <filename>C:\cygwin\bin</filename> and <filename>C:\cygwin\usr\include</filename>).
94 </para>
95 </sect2>
96
97 <sect2><title>The problem</title>
98 <para>GHC, by default, no longer depends on cygwin, but is a native
99 windows program. It is built using mingw, and it uses mingw's ghc
100 while compiling your Haskell sources (even if you call it from
101 cygwin's bash), but what matters here is that - just like any other
102 normal windows program - neither GHC nor the executables it produces
103 are aware of cygwin's pretended unix hierarchy. GHC will happily
104 accept either '/' or '\' as path separators, but it won't know where
105 to find <filename>/home/joe/Main.hs</filename> or <filename>/bin/bash</filename> 
106 or the like. This causes all
107 kinds of fun when GHC is used from within cygwin's bash, or in
108 make-sessions running under cygwin.
109 </para>
110 </sect2>
111
112 <sect2><title>Things to do</title>
113 <itemizedlist>
114 <listitem>
115 <para> Don't use absolute paths in make, configure & co if there is any chance 
116   that those might be passed to GHC (or to GHC-compiled programs). Relative
117   paths are fine because cygwin tools are happy with them and GHC accepts 
118   '/' as path-separator. And relative paths don't depend on where cygwin's
119   root directory is located, or on which partition or network drive your source
120   tree happens to reside, as long as you 'cd' there first.
121 </para></listitem>
122
123 <listitem>
124 <para> If you have to use absolute paths (beware of the innocent-looking
125   <literal>ROOT=`pwd`</literal> in makefile hierarchies or configure scripts), cygwin provides
126   a tool called <command>cygpath</command> that can convert cygwin's unix-style paths to their
127   actual windows-style counterparts. Many cygwin tools actually accept
128   absolute windows-style paths (remember, though, that you either need 
129   to escape '\' or convert '\' to '/'), so you should be fine just using those 
130   everywhere. If you need to use tools that do some kind of path-mangling 
131   that depends on unix-style paths (one fun example is trying to interpret ':' 
132   as a separator in path lists..), you can still try to convert paths using 
133   <command>cygpath</command> just before they are passed to GHC and friends.
134 </para></listitem>
135   
136 <listitem>
137 <para> If you don't have <command>cygpath</command>, you probably don't have cygwin and hence
138   no problems with it... unless you want to write one build process for several
139   platforms. Again, relative paths are your friend, but if you have to use
140   absolute paths, and don't want to use different tools on different platforms,
141   you can simply write a short Haskell program to print the current directory
142    (thanks to George Russell for this idea): compiled with GHC, this will give 
143   you the view of the file system that GHC depends on (which will differ 
144   depending on whether GHC is compiled with cygwin's gcc or mingw's
145   gcc or on a real unix system..) - that little program can also deal with 
146   escaping '\' in paths. Apart from the banner and the startup time, 
147   something like this would also do:
148 <programlisting>
149   $ echo "Directory.getCurrentDirectory >>= putStrLn . init . tail . show " | ghci
150 </programlisting>
151 </para></listitem>
152 </itemizedlist>
153 </sect2>
154 </sect1>
155
156
157 <sect1 id="win32-dlls">
158 <Title>Building and using Win32 DLLs
159 </Title>
160
161 <Para>
162 <IndexTerm><Primary>Dynamic link libraries, Win32</Primary></IndexTerm>
163 <IndexTerm><Primary>DLLs, Win32</Primary></IndexTerm>
164 On Win32 platforms, the compiler is capable of both producing and using
165 dynamic link libraries (DLLs) containing ghc-compiled code. This
166 section shows you how to make use of this facility.
167 </Para>
168
169 <Para>
170 Until recently, <Command>strip</Command> didn't work reliably on DLLs, so you
171 should test your version with care, or make sure you have the latest
172 binutils. Unfortunately, we don't know exactly which version of binutils
173 cured the problem (it was supposedly fixed some years ago).
174 </Para>
175
176
177 <Sect2 id="win32-dlls-link">
178 <Title>Linking with DLLs
179 </Title>
180
181 <Para>
182 The default on Win32 platforms is to link applications in such a way
183 that the executables will use the Prelude and system libraries DLLs,
184 rather than contain (large chunks of) them. This is transparent at the
185 command-line, so 
186 </Para>
187
188 <Para>
189 <Screen>
190 sh$ cat main.hs
191 module Main where
192 main = putStrLn "hello, world!"
193 sh$ ghc -o main main.hs
194 ghc: module version changed to 1; reason: no old .hi file
195 sh$ strip main.exe
196 sh$ ls -l main.exe
197 -rwxr-xr-x   1 544      everyone     4608 May  3 17:11 main.exe*
198 sh$ ./main
199 hello, world!
200 sh$ 
201 </Screen>
202 </Para>
203
204 <Para>
205 will give you a binary as before, but the <Filename>main.exe</Filename>
206 generated will use the Prelude and RTS DLLs instead of linking them in
207 statically.
208 </Para>
209
210 <Para>
211 4K for a <Literal>"hello, world"</Literal> application&mdash;not bad, huh? :-)
212 </Para>
213
214 </Sect2>
215
216 <Sect2 id="win32-dlls-linking-static">
217 <Title>Not linking with DLLs
218 <IndexTerm><Primary>-static option (Win32)</Primary></IndexTerm></Title>
219
220 <Para>
221 If you want to build an executable that doesn't depend on any
222 ghc-compiled DLLs, use the <Option>-static</Option> option to link in
223 the code statically.
224 </Para>
225
226 <Para>
227 Notice that you cannot mix code that has been compiled with
228 <Option>-static</Option> and not, so you have to use the <Option>-static</Option>
229 option on all the Haskell modules that make up your application.
230 </Para>
231
232 </Sect2>
233
234 <Sect2 id="win32-dlls-create">
235 <Title>Creating a DLL
236 </Title>
237
238 <Para>
239 <emphasis>Making libraries into DLLs doesn't work on Windows at the
240 moment (and is no longer supported); however, all the machinery is
241 still there. If you're interested, contact the GHC team. Note that
242 building an entire Haskell application as a DLL is still supported
243 (it's just inter-DLL Haskell calls that don't work).</emphasis>
244 <IndexTerm><Primary>Creating a Win32 DLL</Primary></IndexTerm>
245 <IndexTerm><Primary>&ndash;&ndash;mk-dll</Primary></IndexTerm>
246 Sealing up your Haskell library inside a DLL is straightforward;
247 compile up the object files that make up the library, and then build
248 the DLL by issuing a command of the form:
249 </Para>
250
251 <Para>
252 <Screen>
253 ghc &ndash;&ndash;mk-dll -o foo.dll bar.o baz.o wibble.a -lfooble
254 </Screen>
255 </Para>
256
257 <Para>
258 By feeding the ghc compiler driver the option <Option>&ndash;&ndash;mk-dll</Option>, it
259 will build a DLL rather than produce an executable. The DLL will
260 consist of all the object files and archives given on the command
261 line.
262 </Para>
263
264 <Para>
265 To create a `static' DLL, i.e. one that does not depend on the GHC DLLs,
266 use the <Option>-static</Option> when compiling up your Haskell code and
267 building the DLL.
268 </Para>
269
270 <Para>
271 A couple of things to notice:
272 </Para>
273
274 <Para>
275
276 <ItemizedList>
277 <ListItem>
278 <Para>
279 Since DLLs correspond to packages (see <XRef LinkEnd="packages">) you need
280 to use <Option>-package-name dll-name</Option> when compiling modules that
281 belong to a DLL if you're going to call them from Haskell. Otherwise, Haskell
282 code that calls entry points in that DLL will do so incorrectly, and crash.
283 For similar reasons, you can only compile a single module tree into a DLL,
284 as <Function>startupHaskell</Function> needs to be able to call its
285 initialisation function, and only takes one such argument (see <XRef
286 LinkEnd="win32-dlls-foreign">). Hence the modules
287 you compile into a DLL must have a common root.
288 </Para>
289 </ListItem>
290
291 <ListItem>
292 <Para>
293 By default, the entry points of all the object files will be exported from
294 the DLL when using <Option>&ndash;&ndash;mk-dll</Option>. Should you want to constrain
295 this, you can specify the <Emphasis>module definition file</Emphasis> to use
296 on the command line as follows:
297
298 <Screen>
299 ghc &ndash;&ndash;mk-dll -o .... -optdll--def -optdllMyDef.def
300 </Screen>
301
302 See Microsoft documentation for details, but a module definition file
303 simply lists what entry points you want to export. Here's one that's
304 suitable when building a Haskell COM server DLL:
305
306 <ProgramListing>
307 EXPORTS
308  DllCanUnloadNow     = DllCanUnloadNow@0
309  DllGetClassObject   = DllGetClassObject@12
310  DllRegisterServer   = DllRegisterServer@0
311  DllUnregisterServer = DllUnregisterServer@0
312 </ProgramListing>
313 </Para>
314 </ListItem>
315
316 <ListItem>
317 <Para>
318 In addition to creating a DLL, the <Option>&ndash;&ndash;mk-dll</Option> option also
319 creates an import library. The import library name is derived from the
320 name of the DLL, as follows:
321
322 <ProgramListing>
323 DLL: HScool.dll  ==&#62; import lib: libHScool_imp.a
324 </ProgramListing>
325
326 The naming scheme may look a bit weird, but it has the purpose of allowing
327 the co-existence of import libraries with ordinary static libraries (e.g.,
328 <Filename>libHSfoo.a</Filename> and
329 <Filename>libHSfoo&lowbar;imp.a</Filename>.
330
331 Additionally, when the compiler driver is linking in non-static mode, it
332 will rewrite occurrence of <Option>-lHSfoo</Option> on the command line to
333 <Option>-lHSfoo&lowbar;imp</Option>. By doing this for you, switching from
334 non-static to static linking is simply a question of adding
335 <Option>-static</Option> to your command line.
336
337 </Para>
338 </ListItem>
339 </ItemizedList>
340 </Para>
341
342 </Sect2>
343
344
345 <Sect2 id="win32-dlls-foreign">
346 <Title>Making DLLs to be called from other languages</Title>
347
348 <Para>
349
350 If you want to package up Haskell code to be called from other languages,
351 such as Visual Basic or C++, there are some extra things it is useful to
352 know. The dirty details are in the <Emphasis>Foreign Function
353 Interface</Emphasis> definition, but it can be tricky to work out how to
354 combine this with DLL building, so here's an example:
355
356 </Para>
357
358 <ItemizedList>
359
360 <ListItem>
361 <Para>
362 Use <Literal>foreign export</Literal> declarations to export the Haskell
363 functions you want to call from the outside. For example,
364
365 <ProgramListing>
366 module Adder where
367
368 adder :: Int -> Int -> IO Int  -- gratuitous use of IO
369 adder x y = return (x+y)
370
371 foreign export stdcall adder :: Int -> Int -> IO Int
372 </ProgramListing>
373 </Para>
374 </ListItem>
375
376 <ListItem>
377 <Para>
378 Compile it up:
379
380 <Screen>
381 ghc -c adder.hs -fglasgow-exts
382 </Screen>
383   
384 This will produce two files, adder.o and adder_stub.o
385 </Para>
386 </ListItem>
387
388 <ListItem>
389 <Para>
390 compile up a <Function>DllMain()</Function> that starts up the Haskell
391 RTS-&ndash;&ndash;a possible implementation is:
392
393 <ProgramListing>
394 #include &lt;windows.h&gt;
395 #include &lt;Rts.h&gt;
396
397 EXTFUN(__stginit_Adder);
398
399 static char* args[] = { "ghcDll", NULL };
400                        /* N.B. argv arrays must end with NULL */
401 BOOL
402 STDCALL
403 DllMain
404    ( HANDLE hModule
405    , DWORD reason
406    , void* reserved
407    )
408 {
409   if (reason == DLL_PROCESS_ATTACH) {
410       /* By now, the RTS DLL should have been hoisted in, but we need to start it up. */
411       startupHaskell(1, args, __stginit_Adder);
412       return TRUE;
413   }
414   return TRUE;
415 }
416 </ProgramListing>
417
418 Here, <Literal>Adder</Literal> is the name of the root module in the module
419 tree (as mentioned above, there must be a single root module, and hence a
420 single module tree in the DLL).
421
422 Compile this up:
423
424 <Screen>
425 ghc -c dllMain.c
426 </Screen>
427 </Para>
428 </ListItem>
429
430 <ListItem>
431 <Para>
432 Construct the DLL:
433
434 <Screen>
435 ghc &ndash;&ndash;mk-dll -o adder.dll adder.o adder_stub.o dllMain.o
436 </Screen>
437
438 </Para>
439 </ListItem>
440
441 <ListItem>
442 <Para>
443 Start using <Function>adder</Function> from VBA-&ndash;&ndash;here's how I would
444 <Constant>Declare</Constant> it:
445
446 <ProgramListing>
447 Private Declare Function adder Lib "adder.dll" Alias "adder@8"
448       (ByVal x As Long, ByVal y As Long) As Long
449 </ProgramListing>
450
451 Since this Haskell DLL depends on a couple of the DLLs that come with GHC,
452 make sure that they are in scope/visible.
453 </Para>
454
455 <Para>
456 Building statically linked DLLs is the same as in the previous section: it
457 suffices to add <Option>-static</Option> to the commands used to compile up
458 the Haskell source and build the DLL.
459 </Para>
460
461 </ListItem>
462
463 </ItemizedList>
464
465 </Sect2>
466
467 </sect1>
468 </Chapter>
469
470 <!-- Emacs stuff:
471      ;;; Local Variables: ***
472      ;;; mode: sgml ***
473      ;;; sgml-parent-document: ("users_guide.sgml" "book" "chapter") ***
474      ;;; End: ***
475  -->