|
| 1 | +#!/usr/bin/env bash |
| 2 | + |
| 3 | +# Licensed to the Apache Software Foundation (ASF) under one |
| 4 | +# or more contributor license agreements. See the NOTICE file |
| 5 | +# distributed with this work for additional information |
| 6 | +# regarding copyright ownership. The ASF licenses this file |
| 7 | +# to you under the Apache License, Version 2.0 (the |
| 8 | +# "License"); you may not use this file except in compliance |
| 9 | +# with the License. You may obtain a copy of the License at |
| 10 | +# |
| 11 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +# |
| 13 | +# Unless required by applicable law or agreed to in writing, |
| 14 | +# software distributed under the License is distributed on an |
| 15 | +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 16 | +# KIND, either express or implied. See the License for the |
| 17 | +# specific language governing permissions and limitations |
| 18 | +# under the License. |
| 19 | + |
| 20 | +# This script builds the static library of libturbojpeg that can be used as dependency of |
| 21 | +# mxnet/opencv. |
| 22 | +TURBO_JPEG_VERSION=1.5.90 |
| 23 | +if [[ $PLATFORM == 'darwin' ]]; then |
| 24 | + JPEG_NASM_OPTION="-D CMAKE_ASM_NASM_COMPILER=/usr/local/bin/nasm" |
| 25 | +fi |
| 26 | + |
| 27 | +if [[ ! -f $DEPS_PATH/lib/libjpeg.a ]] || [[ ! -f $DEPS_PATH/lib/libturbojpeg.a ]]; then |
| 28 | + # download and build libjpeg |
| 29 | + >&2 echo "Building libjpeg-turbo..." |
| 30 | + curl -s -L https://github.com/libjpeg-turbo/libjpeg-turbo/archive/$TURBO_JPEG_VERSION.zip -o $DEPS_PATH/libjpeg.zip |
| 31 | + unzip -q $DEPS_PATH/libjpeg.zip -d $DEPS_PATH |
| 32 | + mkdir -p $DEPS_PATH/libjpeg-turbo-$TURBO_JPEG_VERSION/build |
| 33 | + cd $DEPS_PATH/libjpeg-turbo-$TURBO_JPEG_VERSION/build |
| 34 | + cmake \ |
| 35 | + -G"Unix Makefiles" \ |
| 36 | + -D CMAKE_BUILD_TYPE=RELEASE \ |
| 37 | + -D CMAKE_INSTALL_PREFIX=$DEPS_PATH \ |
| 38 | + -D CMAKE_C_FLAGS=-fPIC \ |
| 39 | + -D WITH_JAVA=FALSE \ |
| 40 | + -D WITH_JPEG7=TRUE \ |
| 41 | + -D WITH_JPEG8=TRUE \ |
| 42 | + $JPEG_NASM_OPTION \ |
| 43 | + -D ENABLE_SHARED=FALSE .. |
| 44 | + make |
| 45 | + make install |
| 46 | + cd - |
| 47 | +fi |
0 commit comments