SQLite 源码仓库(Repository)

SQLite 源码仓库(Repository),第1张

概述摘自:http://www.sqlite.org/src/doc/trunk/README.md 仓库包含了完整的SQLite数据库引擎源码。同时包含了一些测试脚本。但是,很多其他的测试脚本 和大多数的文档被分开管理(managed separately). 1编译(compiling) 第一创建目录存放生成的产品(build product).强烈推荐,创建的目录和源码目录隔离开来。 Cd in

摘自:http://www.sqlite.org/src/doc/trunk/README.md


仓库包含了完整的sqlite数据库引擎源码。同时包含了一些测试脚本。但是,很多其他的测试脚本

和大多数的文档被分开管理(managed separately).

1编译(compiling)

第一创建目录存放生成的产品(build product).强烈推荐,创建的目录和源码目录隔离开来。

Cd into the build directory and then from the build directory run the configure script

found at the root of the source tree. Then run "make".

For example:

tar xzf sqlite.tar.gz ;# Unpack the source tree into "sqlite"

mkdir bld ;# Build will occur in a sibling directory

cd bld ;# Change to the build directory

../sqlite/configure ;# Run the configure script

make ;# Run the makefile.

make sqlite3.c ;# Build the "amalgamation" source file

make test ;# Run some tests (requires Tcl)

See the makefile for additional targets.

The configure script uses autoconf 2.61 and libtool. If the configure script does not work out for you,

there is a generic makefile named "Makefile.linux-gcc" in the top directory of the source tree that you

can copy and edit to suit your needs. Comments on the generic makefile show what changes are needed.

总结

以上是内存溢出为你收集整理的SQLite 源码仓库(Repository)全部内容,希望文章能够帮你解决SQLite 源码仓库(Repository)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1162959.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-01
下一篇 2022-06-01

发表评论

登录后才能评论

评论列表(0条)

保存