-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild-ios.sh
executable file
·93 lines (75 loc) · 2.7 KB
/
build-ios.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#!/bin/sh
set -e
if [ -z "$1" ]; then
echo "Usage: $0 <CURL Version>"
exit 1
fi
############
# DOWNLOAD #
############
VERSION=$1
ARCHIVE=tiny-curl.tar.gz
if [ ! -f "${ARCHIVE}" ]; then
echo "Downloading curl ${VERSION}"
curl "https://curl.se/tiny/tiny-curl-${VERSION}.tar.gz" > "${ARCHIVE}"
fi
###########
# COMPILE #
###########
BUILDDIR=build
function build() {
ARCH=$1
HOST=$2
SDK=$3
SDKDIR=$(xcrun --sdk ${SDK} --show-sdk-path)
LOG="../${ARCH}-${SDK}_build.log"
echo "Building libcurl for ${ARCH}-${SDK}..."
WORKDIR=curl_${ARCH}-${SDK}
mkdir "${WORKDIR}"
tar -xzf "../${ARCHIVE}" -C "${WORKDIR}" --strip-components 1
cd "${WORKDIR}"
for FILE in $(find ../../patches -name '*.patch' 2>/dev/null); do
patch -p1 < ${FILE}
done
export CC=$(xcrun -find -sdk ${SDK} gcc)
export CFLAGS="-arch ${ARCH} -pipe -Os -gdwarf-2 -isysroot ${SDKDIR} -m${SDK}-version-min=12.0"
export LDFLAGS="-arch ${ARCH} -isysroot ${SDKDIR}"
./configure \
--host="${HOST}-apple-darwin" \
--disable-shared \
--enable-static \
--without-libidn2 \
--without-nghttp2 \
--without-nghttp3 \
--with-secure-transport \
--prefix $(pwd)/artifacts > "${LOG}" 2>&1
make -j`sysctl -n hw.logicalcpu_max` >> "${LOG}" 2>&1
make install >> "${LOG}" 2>&1
cd ../
}
rm -rf ${BUILDDIR}
mkdir ${BUILDDIR}
cd ${BUILDDIR}
build arm64 arm iphoneos
build arm64 arm iphonesimulator
build x86_64 x86_64 iphonesimulator
cd ../
###########
# PACKAGE #
###########
lipo \
-arch arm64 ${BUILDDIR}/curl_arm64-iphonesimulator/artifacts/lib/libcurl.a \
-arch x86_64 ${BUILDDIR}/curl_x86_64-iphonesimulator/artifacts/lib/libcurl.a \
-create -output ${BUILDDIR}/libcurl.a
rm -rf ${BUILDDIR}/iphoneos/curl.framework ${BUILDDIR}/iphonesimulator/curl.framework
mkdir -p ${BUILDDIR}/iphoneos/curl.framework/Headers ${BUILDDIR}/iphonesimulator/curl.framework/Headers
libtool -no_warning_for_no_symbols -static -o ${BUILDDIR}/iphoneos/curl.framework/curl ${BUILDDIR}/curl_arm64-iphoneos/artifacts/lib/libcurl.a
cp -r ${BUILDDIR}/curl_arm64-iphoneos/artifacts/include/curl/*.h ${BUILDDIR}/iphoneos/curl.framework/Headers
libtool -no_warning_for_no_symbols -static -o ${BUILDDIR}/iphonesimulator/curl.framework/curl ${BUILDDIR}/libcurl.a
cp -r ${BUILDDIR}/curl_arm64-iphonesimulator/artifacts/include/curl/*.h ${BUILDDIR}/iphonesimulator/curl.framework/Headers
rm -rf curl.xcframework
xcodebuild -create-xcframework \
-framework ${BUILDDIR}/iphoneos/curl.framework \
-framework ${BUILDDIR}/iphonesimulator/curl.framework \
-output curl.xcframework
plutil -insert CFBundleVersion -string ${VERSION} curl.xcframework/Info.plist