我在安装过程中遇到了这个问题:
>>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.我该怎么做?
谢谢你的帮助
发布于 2010-05-09 06:24:57
好的,
我从源码zip下载了sqlite3.dll和sqlite3.h。
然后我将sqlite3.dll插入到system32目录中,并在setup configure中使用
--extra-lib-dirs=... --extra-include-dirs=...具有指向标题和dll的正确路径的参数。
发布于 2010-05-09 05:45:13
您需要安装SQLite的C库实现和头文件。
在Ubuntu和其他基于Debian的Linux发行版上,它很简单
sudo apt-get install sqlite3 libsqlite3-dev其他Linux发行版也会有类似名称的包。
在Windows上,你需要做更多的工作。
在OS上,我不知道。
https://stackoverflow.com/questions/2795737
复制相似问题