| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- #!/bin/sh
- # Automatic build script for libssl and libcrypto
- # for iPhoneOS and iPhoneSimulator
- #
- # Created by Felix Schulze on 16.12.10.
- # Copyright 2010-2015 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.2h" #
- IOS_SDKVERSION=`xcrun -sdk iphoneos --show-sdk-version` #
- TVOS_SDKVERSION=`xcrun -sdk appletvos --show-sdk-version` #
- CURL_OPTIONS="" #
- CONFIG_OPTIONS="no-shared no-ssl2 no-ssl3 no-comp no-hw no-md2 no-md4 no-rc2 no-rc5 no-krb5 no-ripemd160 no-idea no-gost no-camellia no-seed no-3des no-heartbeats"
- FORCE_BUILD=false
- # To set "enable-ec_nistp_64_gcc_128" configuration for x64 archs set next variable to "true"
- ENABLE_EC_NISTP_64_GCC_128="" #
- # #
- ###########################################################################
- # #
- # Don't change anything under this line! #
- # #
- ###########################################################################
- spinner()
- {
- local pid=$!
- local delay=0.75
- local spinstr='|/-\'
- while [ "$(ps a | awk '{print $1}' | grep $pid)" ]; do
- local temp=${spinstr#?}
- printf " [%c] " "$spinstr"
- local spinstr=$temp${spinstr%"$temp"}
- sleep $delay
- printf "\b\b\b\b\b\b"
- done
- printf " \b\b\b\b"
- }
- CURRENTPATH=`pwd`
- # PSIPHON: remove unneeded architectures
- #ARCHS="i386 x86_64 armv7 armv7s arm64 tv_x86_64 tv_arm64"
- ARCHS="x86_64 armv7 armv7s arm64"
- DEVELOPER=`xcode-select -print-path`
- IOS_MIN_SDK_VERSION="6.1"
- TVOS_MIN_SDK_VERSION="9.0"
- if [ ${FORCE_BUILD} == false ]; then
- echo "Checking for existing libraries"
- LIBCRYPTO_VERSION=""
- LIBSSL_VERSION=""
- if [ -e ${CURRENTPATH}/lib/libcrypto.a ]; then
- LIBCRYPTO_VERSION=$(strings ${CURRENTPATH}/lib/libcrypto.a | grep "^OpenSSL ${VERSION}")
- fi
- if [ -e ${CURRENTPATH}/lib/libssl.a ]; then
- LIBSSL_VERSION=$(strings ${CURRENTPATH}/lib/libssl.a | grep "^OpenSSL ${VERSION}")
- fi
- if [[ "${LIBCRYPTO_VERSION}" == *${VERSION}* && "${LIBSSL_VERSION}" == *${VERSION}* ]]; then
- echo "libcrypto and libssl are built already built against target version: ${VERSION}"
- exit 0
- fi
- fi
- git clean -Xdf ${CURRENTPATH}
- if [ ! -d "$DEVELOPER" ]; then
- echo "xcode path is not set correctly $DEVELOPER does not exist"
- echo "run"
- echo "sudo xcode-select -switch <xcode path>"
- echo "for default installation:"
- echo "sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer"
- exit 1
- fi
- case $DEVELOPER in
- *\ * )
- echo "Your Xcode path contains whitespaces, which is not supported."
- exit 1
- ;;
- esac
- case $CURRENTPATH in
- *\ * )
- echo "Your path contains whitespaces, which is not supported by 'make install'."
- exit 1
- ;;
- esac
- set -e
- if [ ! -e openssl-${VERSION}.tar.gz ]; then
- echo "Downloading openssl-${VERSION}.tar.gz"
- curl ${CURL_OPTIONS} -O https://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"
- for ARCH in ${ARCHS}
- do
- if [[ "$ARCH" == tv* ]]; then
- SDKVERSION=$TVOS_SDKVERSION
- MIN_SDK_VERSION=$TVOS_MIN_SDK_VERSION
- else
- SDKVERSION=$IOS_SDKVERSION
- MIN_SDK_VERSION=$IOS_MIN_SDK_VERSION
- fi
- if [[ "${ARCH}" == "i386" || "${ARCH}" == "x86_64" ]]; then
- PLATFORM="iPhoneSimulator"
- elif [ "${ARCH}" == "tv_x86_64" ]; then
- ARCH="x86_64"
- PLATFORM="AppleTVSimulator"
- elif [ "${ARCH}" == "tv_arm64" ]; then
- ARCH="arm64"
- PLATFORM="AppleTVOS"
- else
- PLATFORM="iPhoneOS"
- fi
- export $PLATFORM
- export CROSS_TOP="${DEVELOPER}/Platforms/${PLATFORM}.platform/Developer"
- export CROSS_SDK="${PLATFORM}${SDKVERSION}.sdk"
- export BUILD_TOOLS="${DEVELOPER}"
- mkdir -p "${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk"
- LOG="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk/build-openssl-${VERSION}.log"
- echo "Building openssl-${VERSION} for ${PLATFORM} ${SDKVERSION} ${ARCH}"
- echo " Logfile: $LOG"
- LOCAL_CONFIG_OPTIONS="${CONFIG_OPTIONS}"
- if [ "${ENABLE_EC_NISTP_64_GCC_128}" == "true" ]; then
- case "$ARCH" in
- *64*)
- LOCAL_CONFIG_OPTIONS="${LOCAL_CONFIG_OPTIONS} enable-ec_nistp_64_gcc_128"
- ;;
- esac
- fi
- export CC="${BUILD_TOOLS}/usr/bin/gcc -arch ${ARCH}"
- echo " Patch source code..."
- src_work_dir="${CURRENTPATH}/src/${PLATFORM}-${ARCH}"
- mkdir -p "$src_work_dir"
- tar zxf "${CURRENTPATH}/openssl-${VERSION}.tar.gz" -C "$src_work_dir"
- cd "${src_work_dir}/openssl-${VERSION}"
- chmod u+x ./Configure
- if [[ "${PLATFORM}" == "AppleTVSimulator" || "${PLATFORM}" == "AppleTVOS" ]]; then
- LC_ALL=C sed -i -- 's/define HAVE_FORK 1/define HAVE_FORK 0/' "./apps/speed.c"
- LC_ALL=C sed -i -- 's/D\_REENTRANT\:iOS/D\_REENTRANT\:tvOS/' "./Configure"
- if [[ "${ARCH}" == "arm64" ]]; then
- sed -ie "s!static volatile sig_atomic_t intr_signal;!static volatile intr_signal;!" "crypto/ui/ui_openssl.c"
- fi
- elif [[ "$PLATFORM" == "iPhoneOS" ]]; then
- sed -ie "s!static volatile sig_atomic_t intr_signal;!static volatile intr_signal;!" "crypto/ui/ui_openssl.c"
- fi
- echo " Configure...\c"
- set +e
- if [ "$1" == "verbose" ]; then
- if [ "${ARCH}" == "x86_64" ]; then
- ./Configure no-asm darwin64-x86_64-cc --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS}
- else
- ./Configure iphoneos-cross --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS}
- fi
- else
- if [ "${ARCH}" == "x86_64" ]; then
- (./Configure no-asm darwin64-x86_64-cc --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS} > "${LOG}" 2>&1) & spinner
- else
- (./Configure iphoneos-cross --openssldir="${CURRENTPATH}/bin/${PLATFORM}${SDKVERSION}-${ARCH}.sdk" ${LOCAL_CONFIG_OPTIONS} > "${LOG}" 2>&1) & spinner
- fi
- fi
- if [ $? != 0 ]; then
- echo "Problem while configure - Please check ${LOG}"
- exit 1
- fi
- echo "\n Patch Makefile..."
- # add -isysroot to CC=
- if [[ "${PLATFORM}" == "AppleTVSimulator" || "${PLATFORM}" == "AppleTVOS" ]]; then
- sed -ie "s!^CFLAG=!CFLAG=-isysroot ${CROSS_TOP}/SDKs/${CROSS_SDK} -mtvos-version-min=${TVOS_MIN_SDK_VERSION} !" "Makefile"
- else
- sed -ie "s!^CFLAG=!CFLAG=-isysroot ${CROSS_TOP}/SDKs/${CROSS_SDK} -miphoneos-version-min=${MIN_SDK_VERSION} !" "Makefile"
- fi
- echo " Make...\c"
- if [ "$1" == "verbose" ]; then
- if [[ ! -z $CONFIG_OPTIONS ]]; then
- make depend
- fi
- make
- else
- if [[ ! -z $CONFIG_OPTIONS ]]; then
- make depend >> "${LOG}" 2>&1
- fi
- (make >> "${LOG}" 2>&1) & spinner
- fi
- echo "\n"
- if [ $? != 0 ]; then
- echo "Problem while make - Please check ${LOG}"
- exit 1
- fi
- set -e
- if [ "$1" == "verbose" ]; then
- make install_sw
- make clean
- else
- make install_sw >> "${LOG}" 2>&1
- make clean >> "${LOG}" 2>&1
- fi
- rm -rf "$src_work_dir"
- done
- echo "Build library for iOS..."
- # PSIPHON: remove unneeded architectures
- #lipo -create \
- # ${CURRENTPATH}/bin/iPhoneSimulator${IOS_SDKVERSION}-i386.sdk/lib/libssl.a \
- # ${CURRENTPATH}/bin/iPhoneSimulator${IOS_SDKVERSION}-x86_64.sdk/lib/libssl.a \
- # ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7.sdk/lib/libssl.a \
- # ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7s.sdk/lib/libssl.a \
- # ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-arm64.sdk/lib/libssl.a \
- # -output ${CURRENTPATH}/lib/libssl.a
- #lipo -create \
- # ${CURRENTPATH}/bin/iPhoneSimulator${IOS_SDKVERSION}-i386.sdk/lib/libcrypto.a \
- # ${CURRENTPATH}/bin/iPhoneSimulator${IOS_SDKVERSION}-x86_64.sdk/lib/libcrypto.a \
- # ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7.sdk/lib/libcrypto.a \
- # ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7s.sdk/lib/libcrypto.a \
- # ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-arm64.sdk/lib/libcrypto.a \
- # -output ${CURRENTPATH}/lib/libcrypto.a
- lipo -create \
- ${CURRENTPATH}/bin/iPhoneSimulator${IOS_SDKVERSION}-x86_64.sdk/lib/libssl.a \
- ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7.sdk/lib/libssl.a \
- ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7s.sdk/lib/libssl.a \
- ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-arm64.sdk/lib/libssl.a \
- -output ${CURRENTPATH}/lib/libssl.a
- lipo -create \
- ${CURRENTPATH}/bin/iPhoneSimulator${IOS_SDKVERSION}-x86_64.sdk/lib/libcrypto.a \
- ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7.sdk/lib/libcrypto.a \
- ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-armv7s.sdk/lib/libcrypto.a \
- ${CURRENTPATH}/bin/iPhoneOS${IOS_SDKVERSION}-arm64.sdk/lib/libcrypto.a \
- -output ${CURRENTPATH}/lib/libcrypto.a
- # PSIPHON: remove unneeded architectures
- #echo "Build library for tvOS..."
- #lipo -create \
- # ${CURRENTPATH}/bin/AppleTVSimulator${TVOS_SDKVERSION}-x86_64.sdk/lib/libssl.a \
- # ${CURRENTPATH}/bin/AppleTVOS${TVOS_SDKVERSION}-arm64.sdk/lib/libssl.a \
- # -output ${CURRENTPATH}/lib/libssl-tvOS.a
- #lipo -create \
- # ${CURRENTPATH}/bin/AppleTVSimulator${TVOS_SDKVERSION}-x86_64.sdk/lib/libcrypto.a \
- # ${CURRENTPATH}/bin/AppleTVOS${TVOS_SDKVERSION}-arm64.sdk/lib/libcrypto.a \
- # -output ${CURRENTPATH}/lib/libcrypto-tvOS.a
- mkdir -p ${CURRENTPATH}/include
- cp -R ${CURRENTPATH}/bin/iPhoneSimulator${IOS_SDKVERSION}-x86_64.sdk/include/openssl ${CURRENTPATH}/include/
- echo "Done."
|