Dynamic Developer path for Xcode 4.3
This commit is contained in:
parent
7333cb85fd
commit
c637f773a9
|
@ -33,6 +33,7 @@ SDKVERSION="5.0" #
|
||||||
|
|
||||||
CURRENTPATH=`pwd`
|
CURRENTPATH=`pwd`
|
||||||
ARCHS="i386 armv6 armv7"
|
ARCHS="i386 armv6 armv7"
|
||||||
|
DEVELOPER=`xcode-select -print-path`
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
if [ ! -e openssl-${VERSION}.tar.gz ]; then
|
if [ ! -e openssl-${VERSION}.tar.gz ]; then
|
||||||
|
@ -63,13 +64,13 @@ do
|
||||||
echo "Building openssl-${VERSION} for ${PLATFORM} ${SDKVERSION} ${ARCH}"
|
echo "Building openssl-${VERSION} for ${PLATFORM} ${SDKVERSION} ${ARCH}"
|
||||||
echo "Please stand by..."
|
echo "Please stand by..."
|
||||||
|
|
||||||
export CC="/Developer/Platforms/${PLATFORM}.platform/Developer/usr/bin/gcc -arch ${ARCH}"
|
export CC="${DEVELOPER}/Platforms/${PLATFORM}.platform/Developer/usr/bin/gcc -arch ${ARCH}"
|
||||||
mkdir -p "${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk"
|
mkdir -p "${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk"
|
||||||
LOG="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk/build-openssl-${VERSION}.log"
|
LOG="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk/build-openssl-${VERSION}.log"
|
||||||
|
|
||||||
./configure BSD-generic32 --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" > "${LOG}" 2>&1
|
./configure BSD-generic32 --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" > "${LOG}" 2>&1
|
||||||
# add -isysroot to CC=
|
# add -isysroot to CC=
|
||||||
sed -ie "s!^CFLAG=!CFLAG=-isysroot /Developer/Platforms/${PLATFORM}.platform/Developer/SDKs/${PLATFORM}${SDKVERSION}.sdk !" "Makefile"
|
sed -ie "s!^CFLAG=!CFLAG=-isysroot ${DEVELOPER}/Platforms/${PLATFORM}.platform/Developer/SDKs/${PLATFORM}${SDKVERSION}.sdk !" "Makefile"
|
||||||
|
|
||||||
make >> "${LOG}" 2>&1
|
make >> "${LOG}" 2>&1
|
||||||
make install >> "${LOG}" 2>&1
|
make install >> "${LOG}" 2>&1
|
||||||
|
|
Loading…
Reference in New Issue