force using AR and RANLIB in SDK

This commit is contained in:
Bochun Bai 2014-05-21 00:58:04 -07:00
parent 6565c60f26
commit 3c84f42f4d

View file

@ -9,6 +9,8 @@ function build_for_arch() {
PREFIX=$4
IPHONEOS_DEPLOYMENT_TARGET="4.3"
export CC="${DEVROOT}/usr/bin/clang"
export AR="${DEVROOT}/usr/bin/ar"
export RANLIB="${DEVROOT}/usr/bin/ranlib"
export CFLAGS="-arch ${ARCH} -pipe -Os -gdwarf-2 -isysroot ${SYSROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET}"
export LDFLAGS="-arch ${ARCH} -isysroot ${SYSROOT}"
./configure --disable-shared --enable-static --host="${HOST}" --prefix=${PREFIX} && make -j8 && make install