Re: [Haskell] building shared objects

2006-09-20 Thread Jeremy Wazny
Hi Bulat, > Thursday, September 14, 2006, 7:45:46 PM, you wrote: > > > I'm wondering if anybody has had any success building shared > objects > > from Haskell code on x86 Linux and/or Sparc Solaris. > > from GHC docs: > > "-dynamic > Tell the linker to use shared Haskell libraries, if available

Re: [Haskell] building shared objects

2006-09-19 Thread Bulat Ziganshin
Hello Jeremy, Thursday, September 14, 2006, 7:45:46 PM, you wrote: > I'm wondering if anybody has had any success building shared objects > from Haskell code on x86 Linux and/or Sparc Solaris. from GHC docs: "-dynamic Tell the linker to use shared Haskell libraries, if available (this option is

Re: [Haskell] building shared objects

2006-09-14 Thread Tomasz Zielonka
On Fri, Sep 15, 2006 at 01:45:46AM +1000, Jeremy Wazny wrote: > The performance of the Haskell code is not an issue. > [...] > The alternative is to admit defeat and rewrite all the Haskell code as > C++, which is pretty depressing. If performance is not an issue, then maybe another alternative -

[Haskell] building shared objects

2006-09-14 Thread Jeremy Wazny
Hi all, I'm wondering if anybody has had any success building shared objects from Haskell code on x86 Linux and/or Sparc Solaris. I have some Haskell source which I am trying to integrate into a C/C++ library which I am maintaining at the same time. The performance of the Haskell code is not an