知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

unqlite安装shell脚本

发布时间:2014-09-05 14:16:44作者:知识屋

unqlite安装shell脚本
 
01
#! /bin/sh
02
 
03
# 下载源码
04
wget -c http://up.2cto.com/2013/0709/20130709022156488.zip
05
 
06
# 解压源码
07
unzip unqlite-db-116.zip
08
 
09
# 编译源码
10
gcc -Wall -fPIC -c *.c
11
gcc -shared -Wl,-soname,libunqlite.so.1 -o libunqlite.so.1.0 *.o
12
 
13
# 建立软链接
14
sudo cp `pwd`/libunqlite.so.1.0 /usr/local/lib/
15
sudo cp `pwd`/unqlite.h /usr/local/include/
16
sudo ln -sf /usr/local/lib/libunqlite.so.1.0 /usr/local/lib/libunqlite.so.1
17
sudo ln -sf /usr/local/lib/libunqlite.so.1 /usr/local/lib/libunqlite.so
18
 
19
# 建立共享
20
sudo ldconfig /usr/local/lib/libunqlite.so
21
 
22
# 下载golang unqlite驱动包
23
git clone git@github.com:ceh/gounqlite.git
 
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜