交叉编译-sqlite

版本:
sqlite-3.28 下载

sqlite-3.28

准备

1
apt-get install tcl8.5

编译

1
2
3
4
5
6
7
8
9
10
./configure \
CC=arm-linux-gnueabihf-gcc \
CXX=arm-linux-gnueabihf-g++ \
AR=arm-linux-gnueabihf-ar \
RANLIB=arm-linux-gnueabihf-ranlib \
--host=arm-linux-gnueabihf \
--prefix=/opt/Crosscompile/buildComplete/sqlite-3.28

make
make install