Home SQLite 빌드 - ARM
Post
Cancel

SQLite 빌드 - ARM

  • SQLite를 ARM 리눅스에서 사용할 수 있도록 빌드한다.

설치 환경

  • 타겟: Sabre Lite에 Ubuntu 18.04
  • SQLite-autoconf_3280000

SQLite 빌드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 소스 코드 다운로드
$ wget https://www.sqlite.org/2019/sqlite-autoconf-3280000.tar.gz
$ tar xvzf sqlite-autoconf-3280000.tar.gz
$ cd sqlite-autoconf-3280000
$ mkdir dev

# --prefix=설치 경로 입력
# 만약 Windows 환경에서 빌드한다면 Cross Compiler를 지정해야함:   CC=arm-linux-gnueabihf-gcc
$ ./configure --host=arm-linux --prefix=/home/ubuntu/sqlite-autoconf-3280000/dev

# 약 10분 정도의 시간이 소요됨
$ make -j4

# 약 5분 정도의 시간이 소요됨
$ sudo make install

출처: https://vicente-hernando.appspot.com/sqlite3-cross-compile-arm-howto

This post is licensed under CC BY 4.0 by the author.

리눅스 커널에 시스템 호출 구현 - ARM Sabre Lite(Kernel.org)

Sabre Lite Unbricking

Comments powered by Disqus.

Trending Tags