3 # This file is under GNU General Public License 3.0
6 export DEVROOT=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
7 DFT_DIST_DIR=../libcurl-ios-dist
8 DIST_DIR=${DIST_DIR:-$DFT_DIST_DIR}
10 function check_curl_ver() {
11 echo "#include \"include/curl/curlver.h\"
12 #if LIBCURL_VERSION_MAJOR < 7 || LIBCURL_VERSION_MINOR < 40
13 #error Required curl 7.40.0+; See http://curl.haxx.se/docs/adv_20150108A.html
14 #endif"|gcc -c -o /dev/null -xc -||exit 9
17 function build_for_arch() {
22 IPHONEOS_DEPLOYMENT_TARGET="6.0"
23 export PATH="${DEVROOT}/usr/bin/:${PATH}"
24 export CFLAGS="-arch ${ARCH} -pipe -Os -gdwarf-2 -isysroot ${SYSROOT} -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET} -fembed-bitcode"
25 export LDFLAGS="-arch ${ARCH} -isysroot ${SYSROOT}"
26 ./configure --disable-shared --enable-static ${SSL_FLAG} --host="${HOST}" --prefix=${PREFIX} && make -j8 && make install
29 if [ "$1" == "openssl" ]
31 if [ ! -d ${HOME}/Desktop/openssl-ios-dist ]
33 echo "Please use https://github.com/sinofool/build-openssl-ios/ to build OpenSSL for iOS first"
36 export SSL_FLAG=--with-ssl=${HOME}/Desktop/openssl-ios-dist
39 export SSL_FLAG=--with-darwinssl
42 TMP_DIR=/tmp/build_libcurl_$$
44 build_for_arch i386 i386-apple-darwin /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk ${TMP_DIR}/i386 || exit 1
45 build_for_arch x86_64 x86_64-apple-darwin /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator.sdk ${TMP_DIR}/x86_64 || exit 2
46 build_for_arch arm64 arm-apple-darwin /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk ${TMP_DIR}/arm64 || exit 3
47 build_for_arch armv7s armv7s-apple-darwin /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk ${TMP_DIR}/armv7s || exit 4
48 build_for_arch armv7 armv7-apple-darwin /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk ${TMP_DIR}/armv7 || exit 5
50 mkdir -p ${TMP_DIR}/lib/
51 ${DEVROOT}/usr/bin/lipo \
52 -arch i386 ${TMP_DIR}/i386/lib/libcurl.a \
53 -arch x86_64 ${TMP_DIR}/x86_64/lib/libcurl.a \
54 -arch armv7 ${TMP_DIR}/armv7/lib/libcurl.a \
55 -arch armv7s ${TMP_DIR}/armv7s/lib/libcurl.a \
56 -arch arm64 ${TMP_DIR}/arm64/lib/libcurl.a \
57 -output ${TMP_DIR}/lib/libcurl.a -create
59 cp -r ${TMP_DIR}/armv7s/include ${TMP_DIR}/
60 curl -O https://raw.githubusercontent.com/sinofool/build-libcurl-ios/master/patch-include.patch
61 patch ${TMP_DIR}/include/curl/curlbuild.h < patch-include.patch
64 cp -r ${TMP_DIR}/include ${TMP_DIR}/lib ${DIST_DIR}