让我们举一个常见的例子,说明如何从C函数调用haskell函数:
Haskell模块:
{-# LANGUAGE ForeignFunctionInterface #-}
module Safe where
import Foreign.C.Types
fibonacci :: Int -> Int
fibonacci n = fibs !! n
where fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
fibonacci_hs :: CInt -> CInt
fibonacci_hs = fromIntegral . fibonacci . fromIntegral
foreign export ccall fibonacci_hs :: CInt -> CInt
和C模块:
#include <HsFFI.h>
#ifdef __GLASGOW_HASKELL__
#include "Safe_stub.h"
extern void __stginit_Safe(void);
#endif
#include <stdio.h>
int main(int argc, char *argv[]) {
int i;
hs_init(&argc, &argv);
#ifdef __GLASGOW_HASKELL__
hs_add_root(__stginit_Safe);
#endif
i = fibonacci_hs(42);
printf("Fibonacci: %d\n", i);
hs_exit();
return 0;
}
我编译并链接它:
$ ghc -c -O Safe.hs
$ ghc test.c Safe.o Safe_stub.o -o test
没关系。但是如果我需要在haskell模块中导入一些库呢?例如,如果我需要使用字节串,我应该添加“import Data.Bytestring.Char8”(这个模块用于示例而不用于代码):
{-# LANGUAGE ForeignFunctionInterface #-}
module Safe where
import Foreign.C.Types
import Data.Bytestring.Char8
fibonacci :: Int -> Int
fibonacci n = fibs !! n
where fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
fibonacci_hs :: CInt -> CInt
fibonacci_hs = fromIntegral . fibonacci . fromIntegral
foreign export ccall fibonacci_hs :: CInt -> CInt
那不行,现在我收到了一个错误:
$ ...undefined reference to `__stginit_bytestringzm0zi9zi2zi0_DataziByteStringziChar8_'
目前我发现的问题是: a bug in GHC如下 changeset (more formal description of the bug)
当我使用ghc-6.12.3时,我已经实现了这个功能。所以我不知道如何解决这个问题。
也许,制作共享库并将其与我的C模块动态链接会更容易吗?
答案 0 :(得分:4)
我不认为这个bug是相关的。您是否尝试过使用--make
?
$ ghc -c -O Safe.hs
$ ghc --make test.c Safe.o Safe_stub.o -o test
这些错误是在将pure-Haskell代码与包依赖关系链接而不使用--make
时,用于获取 1 的错误类型;默认情况下GHC链接在base
,但是如果您想要其他包不起作用的任何内容。
如果您想要更“手动”的方法,也可以尝试明确指定包:
$ ghc -c -O Safe.hs
$ ghc -package bytestring test.c Safe.o Safe_stub.o -o test
1 自GHC 7起,--make
成为默认值。