Re: [Haskell-cafe] When is extra-libraries config in .cabal

2007-07-16 Thread Edward Ing
Before solving the problem, GHC builds would proceed fine. The link problem occurred during runtime. What libraries on the Windows operating would the build have succeeded on? Win32 Api -- do those have the standard C functions. If these libraries are available, I wonder why the link failed

[Haskell-cafe] When is extra-libraries config in .cabal

2007-07-13 Thread Edward Ing
I am building and running some haskelldb/HDBC/HSQL libraries on Windows XP (using the MinGW minimals system (MSYS)) with GHC environment. I ran into runtime link problems, foreign functions would not found. eg. atoi,from C standard; recv from sockets. To solve the problem, I added dll's to the

Re: [Haskell-cafe] When is extra-libraries config in .cabal

2007-07-13 Thread Duncan Coutts
On Fri, 2007-07-13 at 12:05 -0400, Edward Ing wrote: I am building and running some haskelldb/HDBC/HSQL libraries on Windows XP (using the MinGW minimals system (MSYS)) with GHC environment. I ran into runtime link problems, foreign functions would not found. eg. atoi,from C standard; recv