We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bad995f commit dcffd84Copy full SHA for dcffd84
build-ios.sh
@@ -37,6 +37,10 @@ function build() {
37
tar -xzf "../${ARCHIVE}" -C "${WORKDIR}" --strip-components 1
38
cd "${WORKDIR}"
39
40
+ for FILE in $(find ../../patches -name '*.patch'); do
41
+ patch -p1 < ${FILE}
42
+ done
43
+
44
unset CFLAGS
45
unset LDFLAGS
46
CFLAGS="-arch ${ARCH} -pipe -Os -gdwarf-2 -isysroot ${SDKDIR} -I${SDKDIR}/usr/include -miphoneos-version-min=${IPHONEOS_DEPLOYMENT_TARGET} -fembed-bitcode"
patches/README
@@ -0,0 +1,3 @@
1
+Any .patch file placed here will be applied to the cURL source
2
+before compiling. Patches are applied in an alphabetical order.
3
0 commit comments