编译SQLite以在Windows Mobile上运行

时间:2012-02-09 17:29:03

标签: c sqlite mobile compilation windows-mobile-6.5

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

它是用C语言编写的,我需要它在Windows Mobile 6.5上运行。有关这方面的任何提示吗?

1 个答案:

答案 0 :(得分:0)

WinCE上似乎缺少标准的C库,所以看起来你需要找到帮助库来帮助从Unix移植到windows mobile,例如WCELIBCEX(http://wcelibcex.sourceforge)达网络/).

你也可能无法解开SQLite的TCL构建要求(老实说,我不知道为什么他们这样做,当shell脚本和标准的Unix libs做得很好时)。

快乐的黑客攻击。

更新:好的,看起来更深一点,发现你可以让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

的引文