123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- #!/bin/bash
- #
- # This script generates 'WebP.framework' (static library).
- # An iOS app can decode WebP images by including 'WebP.framework'.
- #
- # 1. Download the latest libwebp source code from
- # http://downloads.webmproject.org/releases/webp/index.html
- # 2. Use this script instead of the original 'iosbuild.sh' to build the WebP.framework.
- # It will build all modules, include mux, demux, coder and decoder.
- #
- # Notice: You should use Xcode 7 (or above) to support bitcode.
- set -e
- # Extract the latest SDK version from the final field of the form: iphoneosX.Y
- readonly SDK=$(xcodebuild -showsdks \
- | grep iphoneos | sort | tail -n 1 | awk '{print substr($NF, 9)}'
- )
- # Extract Xcode version.
- readonly XCODE=$(xcodebuild -version | grep Xcode | cut -d " " -f2)
- if [[ -z "${XCODE}" ]]; then
- echo "Xcode not available"
- exit 1
- fi
- readonly OLDPATH=${PATH}
- # Add iPhoneOS-V6 to the list of platforms below if you need armv6 support.
- # Note that iPhoneOS-V6 support is not available with the iOS6 SDK.
- PLATFORMS="iPhoneSimulator iPhoneSimulator64"
- PLATFORMS+=" iPhoneOS-V7 iPhoneOS-V7s iPhoneOS-V7-arm64"
- readonly PLATFORMS
- readonly SRCDIR=$(dirname $0)
- readonly TOPDIR=$(pwd)
- readonly BUILDDIR="${TOPDIR}/iosbuild"
- readonly TARGETDIR="${TOPDIR}/WebP.framework"
- readonly DEVELOPER=$(xcode-select --print-path)
- readonly PLATFORMSROOT="${DEVELOPER}/Platforms"
- readonly LIPO=$(xcrun -sdk iphoneos${SDK} -find lipo)
- LIBLIST=''
- if [[ -z "${SDK}" ]]; then
- echo "iOS SDK not available"
- exit 1
- else
- echo "iOS SDK Version ${SDK}"
- fi
- rm -rf ${BUILDDIR}
- rm -rf ${TARGETDIR}
- mkdir -p ${BUILDDIR}
- mkdir -p ${TARGETDIR}/Headers/
- if [[ ! -e ${SRCDIR}/configure ]]; then
- if ! (cd ${SRCDIR} && sh autogen.sh); then
- cat <<EOT
- Error creating configure script!
- This script requires the autoconf/automake and libtool to build. MacPorts can
- be used to obtain these:
- http://www.macports.org/install.php
- EOT
- exit 1
- fi
- fi
- for PLATFORM in ${PLATFORMS}; do
- ARCH2=""
- if [[ "${PLATFORM}" == "iPhoneOS-V7-arm64" ]]; then
- PLATFORM="iPhoneOS"
- ARCH="aarch64"
- ARCH2="arm64"
- elif [[ "${PLATFORM}" == "iPhoneOS-V7s" ]]; then
- PLATFORM="iPhoneOS"
- ARCH="armv7s"
- elif [[ "${PLATFORM}" == "iPhoneOS-V7" ]]; then
- PLATFORM="iPhoneOS"
- ARCH="armv7"
- elif [[ "${PLATFORM}" == "iPhoneOS-V6" ]]; then
- PLATFORM="iPhoneOS"
- ARCH="armv6"
- elif [[ "${PLATFORM}" == "iPhoneSimulator64" ]]; then
- PLATFORM="iPhoneSimulator"
- ARCH="x86_64"
- else
- ARCH="i386"
- fi
- ROOTDIR="${BUILDDIR}/${PLATFORM}-${SDK}-${ARCH}"
- mkdir -p "${ROOTDIR}"
- DEVROOT="${DEVELOPER}/Toolchains/XcodeDefault.xctoolchain"
- SDKROOT="${PLATFORMSROOT}/"
- SDKROOT+="${PLATFORM}.platform/Developer/SDKs/${PLATFORM}${SDK}.sdk/"
- CFLAGS="-arch ${ARCH2:-${ARCH}} -pipe -isysroot ${SDKROOT} -O3 -DNDEBUG"
- CFLAGS+=" -miphoneos-version-min=6.0 -fembed-bitcode"
- set -x
- export PATH="${DEVROOT}/usr/bin:${OLDPATH}"
- ${SRCDIR}/configure --host=${ARCH}-apple-darwin --prefix=${ROOTDIR} \
- --build=$(${SRCDIR}/config.guess) \
- --disable-shared --enable-static \
- --enable-libwebpmux \
- --enable-libwebpdemux \
- --enable-swap-16bit-csp \
- CFLAGS="${CFLAGS}"
- set +x
- # run make only in the src/ directory to create libwebpdecoder.a
- cd src/
- make V=0
- make install
- MAKEPATH=$(pwd)
- cd ${ROOTDIR}/lib/
- ar x libwebp.a
- ar x libwebpmux.a
- ar x libwebpdemux.a
- ar q webp.a *.o
- LIBLIST+=" ${ROOTDIR}/lib/webp.a"
- cd ${MAKEPATH}
- make clean
- cd ..
- export PATH=${OLDPATH}
- done
- cp -a ${SRCDIR}/src/webp/*.h ${TARGETDIR}/Headers/
- ${LIPO} -create ${LIBLIST} -output ${TARGETDIR}/WebP
|