-1

这是源代码的链接。http://www.sqlite.org/download.html

它是用 C 编写的,我需要它在 windows mobile 6.5 上运行。有什么建议吗?

4

1 回答 1

0

WinCE 上似乎缺乏原生的标准 C 库,因此您似乎需要找到旨在帮助从 Unix 移植到 Windows Mobile 的帮助库,例如 WCELIBCEX(http://wcelibcex.sourceforge.net/ )。

您也可能难以理清 SQLite 的 TCL 构建要求(老实说,我不知道他们为什么这样做,而 shell 脚本和标准 Unix 库本来可以做得很好)。

快乐的黑客。

更新:好吧,再深入一点,发现您可以让 SQLite 人员在 TCL 修改后给您一个 C 文件:

To simplify matters, SQLite is also available as a pre-packaged amalgamation source
code file: sqlite3.c. The amalgamation is a single file of ANSI-C code that implements
the entire SQLite library. 

引用来自http://www.sqlite.org/howtocompile.html的文本

于 2012-02-09T18:59:02.810 回答