From 4c3a5dd4d7db923870fac97ded625e7566a5030a Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 5 Oct 2022 17:42:14 +1000 Subject: [PATCH] CI: ARM64 Mac builds for CURL should also disable brotili --- scripts/build-dependencies-mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-dependencies-mac.sh b/scripts/build-dependencies-mac.sh index e7037ad24..0919d715a 100755 --- a/scripts/build-dependencies-mac.sh +++ b/scripts/build-dependencies-mac.sh @@ -104,7 +104,7 @@ cd .. # Build arm64, but don't install it, instead just add the arm64 binary into the existing x64 dylib. mkdir build-arm64 cd build-arm64 -CFLAGS="-arch arm64" ../configure --host x86_64-apple-darwin --prefix "$INSTALLDIR" --with-secure-transport +CFLAGS="-arch arm64" ../configure --host x86_64-apple-darwin --prefix "$INSTALLDIR" --with-secure-transport --without-brotli make "-j$NPROCS" lipo -create "$INSTALLDIR/lib/libcurl.4.dylib" "lib/.libs/libcurl.4.dylib" -o "$INSTALLDIR/lib/libcurl.4.dylib" cd ../..