Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

and if the following screen is displayed, it is successful.

...

Compile C/C++

...

module(libjpeg)

Docker環境を構築する

...

Build a Docker environment

Compile in Docker environment to use libjpeg in Ubuntu (64-bit) 環境でlibjpegを利用するためにDocker環境でコンパイルします。

こちらを参考にしてDocker環境を構築およびDockerイメージを作成してください。

libjpegのソースコードをダウンロードする

公式サイトからlibjpegのソースコードをダウンロードします。

このチュートリアルでは、例としてバージョン9eを使用します。

ダウンロードするバージョンは、使用する機能に合わせて選択してください。environment.

Please refer to here★link★ to build a Docker environment and create a Docker image.

Download source code

Download libjpeg source code from the URLs below.

This tutorial uses version 9e.

Select the version to download according to the functions you use.

libjpeg (version : 9e)

http://www.ijg.org/files/jpegsrc.v9e.tar.gz

ダウンロードしたファイルは、$Place the downloaded files to “${SDK_DIR}/external/build/sample/docker/docker_volumeディレクトリに配置してください。

コンパイル手順ファイルを更新する

$volume” directory.

Update compilation instructions file

Put the compilation instructions in “${SDK_DIR}/external/build/sample/docker/docker_volume/module_compile.shファイルに、コンパイル手順を記載します。下記の内容をコピーしてください。sh” file.

Please copy the content below.

Code Block
#!/bin/sh -x

HOME_PATH=/home/docker

LIBJPEG_ARCHIVES=jpegsrc.v9e.tar.gz
LIBJPEG_DIR=jpeg-9e

## for libjpeg
cd ${HOME_PATH}
tar zxf ${LIBJPEG_ARCHIVES}
cd ${LIBJPEG_DIR}
./configure
make

コンパイルする

...

Compile

Compile sqlite module and Python module using docker.

${SDK_DIR}/external/build/sample/docker ディレクトリでDockerを実行してください。

...