RE: DLLs and shared libraries

2004-06-15 Thread Andrei de A. Formiga
--- Simon Marlow <[EMAIL PROTECTED]> wrote: > On 14 June 2004 03:03, Andrei de A. Formiga wrote: > > You can create a DLL of Haskell code on Windows, but > only of a complete > self-contained library (ie. you can't split your > Haskell library into > several DLLs and link them together at runtime)

RE: DLLs and shared libraries

2004-06-14 Thread Simon Marlow
On 14 June 2004 03:03, Andrei de A. Formiga wrote: >I need to generate DLLs (in Windows) and shared > libraries (in unix environments) that expose some > Haskell functions (directly or through a C stub). My > first option is having ghc generate the libs directly > with the foreign export funct