首页 > 数据库技术 > 详细

Compile SQLite3 from individual files

时间:2015-07-05 22:29:39      阅读:363      评论:0      收藏:0      [点我收藏+]

下载非Amalgamation SQLite3源码

安装tcl, apt-get instal tcl

解压

mkdir build

cd build

../configure

make

#make sqlite3.c    ###生成sqlite3.c, sqlite3ext.h, shell.c

 

全部命令

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)

 

Compile SQLite3 from individual files

原文:http://www.cnblogs.com/xzpp/p/4623084.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!