>module Blah where
>import
Foreign.C.Types(CInt)
>foreign import ccall test :: CInt
>blah =
test
After that I wrote ghc -fffi -c test.lhs. But when I call blah from ghci I get the error message: "test.o unknown symbol '_test'
I think ghc doen't link test.o to projekt.obj. What do I have to do?
Thx
Dominik