90 lines
3.4 KiB
Bash
Executable File
90 lines
3.4 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# Automatic build script for libssl and libcrypto
|
|
# for iPhoneOS and iPhoneSimulator
|
|
#
|
|
# Created by Felix Schulze on 16.12.10.
|
|
# Copyright 2010 Felix Schulze. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
###########################################################################
|
|
# Change values here #
|
|
# #
|
|
VERSION="1.0.1" #
|
|
SDKVERSION="5.1" #
|
|
# #
|
|
###########################################################################
|
|
# #
|
|
# Don't change anything under this line! #
|
|
# #
|
|
###########################################################################
|
|
|
|
|
|
CURRENTPATH=`pwd`
|
|
ARCHS="i386 armv6 armv7"
|
|
DEVELOPER=`xcode-select -print-path`
|
|
|
|
set -e
|
|
if [ ! -e openssl-${VERSION}.tar.gz ]; then
|
|
echo "Downloading openssl-${VERSION}.tar.gz"
|
|
curl -O http://www.openssl.org/source/openssl-${VERSION}.tar.gz
|
|
else
|
|
echo "Using openssl-${VERSION}.tar.gz"
|
|
fi
|
|
|
|
mkdir -p "${CURRENTPATH}/src"
|
|
mkdir -p "${CURRENTPATH}/bin"
|
|
mkdir -p "${CURRENTPATH}/lib"
|
|
|
|
tar zxf openssl-${VERSION}.tar.gz -C "${CURRENTPATH}/src"
|
|
cd "${CURRENTPATH}/src/openssl-${VERSION}"
|
|
|
|
|
|
for ARCH in ${ARCHS}
|
|
do
|
|
if [ "${ARCH}" == "i386" ];
|
|
then
|
|
PLATFORM="iPhoneSimulator"
|
|
else
|
|
sed -ie "s!static volatile sig_atomic_t intr_signal;!static volatile intr_signal;!" "crypto/ui/ui_openssl.c"
|
|
PLATFORM="iPhoneOS"
|
|
fi
|
|
|
|
echo "Building openssl-${VERSION} for ${PLATFORM} ${SDKVERSION} ${ARCH}"
|
|
echo "Please stand by..."
|
|
|
|
export CC="${DEVELOPER}/Platforms/${PLATFORM}.platform/Developer/usr/bin/gcc -arch ${ARCH}"
|
|
mkdir -p "${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk"
|
|
LOG="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk/build-openssl-${VERSION}.log"
|
|
|
|
./configure BSD-generic32 --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" > "${LOG}" 2>&1
|
|
# add -isysroot to CC=
|
|
sed -ie "s!^CFLAG=!CFLAG=-isysroot ${DEVELOPER}/Platforms/${PLATFORM}.platform/Developer/SDKs/${PLATFORM}${SDKVERSION}.sdk !" "Makefile"
|
|
|
|
make >> "${LOG}" 2>&1
|
|
make install >> "${LOG}" 2>&1
|
|
make clean >> "${LOG}" 2>&1
|
|
done
|
|
|
|
echo "Build library..."
|
|
lipo -create ${CURRENTPATH}/bin/iPhoneSimulator${SDKVERSION}-i386.sdk/lib/libssl.a ${CURRENTPATH}/bin/iPhoneOS${SDKVERSION}-armv6.sdk/lib/libssl.a ${CURRENTPATH}/bin/iPhoneOS${SDKVERSION}-armv7.sdk/lib/libssl.a -output ${CURRENTPATH}/lib/libssl.a
|
|
|
|
lipo -create ${CURRENTPATH}/bin/iPhoneSimulator${SDKVERSION}-i386.sdk/lib/libcrypto.a ${CURRENTPATH}/bin/iPhoneOS${SDKVERSION}-armv6.sdk/lib/libcrypto.a ${CURRENTPATH}/bin/iPhoneOS${SDKVERSION}-armv7.sdk/lib/libcrypto.a -output ${CURRENTPATH}/lib/libcrypto.a
|
|
|
|
mkdir -p ${CURRENTPATH}/include
|
|
cp -R ${CURRENTPATH}/bin/iPhoneSimulator${SDKVERSION}-i386.sdk/include/openssl ${CURRENTPATH}/include/
|
|
echo "Building done."
|
|
echo "Cleaning up..."
|
|
rm -rf ${CURRENTPATH}/src/openssl-${VERSION}
|
|
echo "Done." |