安装HDBC-SQlite3 Haskell

时间:2010-05-08 21:41:08

标签: sqlite haskell

我在安装过程中面临问题:

>>setup configure

Configuring HDBC-sqlite3-2.3.0.0...
setup: Missing dependency on a foreign library:
* Missing C library: sqlite3
This problem can usually be solved by installing the system package that
provides this library (you may need the "-dev" version). If the library is
already installed but in a non-standard location then you can use the flags
--extra-include-dirs= and --extra-lib-dirs= to specify where it is.

我该怎么办?

感谢您的帮助

2 个答案:

答案 0 :(得分:10)

好的,

我从源zip下载了sqlite3.dll和sqlite3.h。

然后我在system32 dir中插入了sqlite3.dll,并在setup configure中使用了

- extra-lib-dirs = ... --extra-include-dirs = ...具有正确的header和dll路径的参数。

答案 1 :(得分:9)

您需要安装SQLite的C库实现和标题。

在Ubuntu和其他基于Debian的Linux发行版中,它只是

sudo apt-get install sqlite3 libsqlite3-dev

其他Linux发行版也会有类似名称的包。

在Windows上,您将需要做更多的工作。

在OS X上,我不知道。