I've create a static library:
// foo.h
extern "C" {
int foo (const char* arg0, int arg1);
}
// foo.cpp
#include "foo.h"
// implementation of foo
This block of code was compiled to foo.o and packaged into libfoo.a which was installed to MinGW's lib dir (I'm on Windows, using GCC toolchain).
What I want to do is to wrap this function in Haksell code, so a typical FFI binding as follows:
-- Foo.hs
{-# LANGUAGE ForeignFunctionInterface #-}
module Foo where
foreign import ccall "foo"
c_foo :: CString -> CInt -> IO (CInt)
extra-libraries was added to the .cabal file as well:
...
extra-libraries: foo, stdc++
But GHC compains about undefined reference on foo:
.dist-scion\build\path\to\Foo.o:fake:(.text+0x514): undefined reference to `foo'
After nm the library to find out the function foo actually existing in the library (with some decorations on the name), I'm stucked here...
[EDIT]
I also tried build the haskell package using cabal:
cabal configure
cabal build
The result shows:
Loading object (dynamic) foo ... ghc.exe: foo: ....
<command line>: user specified .o/.so/.DLL could not be loaded (addDLL: could not load DLL)
So is this supposed to have something to do with static/dynamic linking? 'cause I noticed GHC want to load .o/.so/.DLL but NOT .a. I'm really confused.
finally got something on the wiki: Cxx Foreign Function Interface
[EDIT]
One solution is to use -optl-lfoo -optl-lstdc++ in .cabal file, not extra-libraries. And the naming problem can be easily solved by wrapping the declaration in extern "C":
#ifdef __cplusplus
extern "C" {
#endif
extern int foo (const char*, int);
#ifdef __cplusplus
}
#endif
This works within EclipseFP, 'cause it uses Scion. But it still fails on cabal build.
foreign import stdcall "foo". – John L Oct 17 '11 at 12:41nmto inspect symbols in the .o file after adding__stdcallto the function, and get something like this:00000000 T __Z18fooPKci@24. GHC still says undefined reference tofoo@24... – claude Oct 17 '11 at 12:57foois declared inside anextern "C"block? – Derrick Turk Oct 17 '11 at 14:31extern "C". I did some experiments, try to useforeign import stdcall, and failed. – claude Oct 18 '11 at 2:31g++ -c foo.cpp; ar rcs libfoo.a foo.o; ghc ghc -lfoo Foo.hs. This is with g++-4.5.0 and ghc-7.0.3. Is some of your code using Template Haskell, either directly or via fclabels or similar? – John L Oct 18 '11 at 9:55