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 6c12d18 commit d88986aCopy full SHA for d88986a
.github/workflows/wheels-dependencies.sh
@@ -280,8 +280,11 @@ function build {
280
if [[ -n "$IS_MACOS" ]]; then
281
webp_cflags="$webp_cflags -Wl,-headerpad_max_install_names"
282
fi
283
- CFLAGS="$CFLAGS $webp_cflags" build_simple libwebp $LIBWEBP_VERSION \
284
- https://storage.googleapis.com/downloads.webmproject.org/releases/webp tar.gz \
+ webp_ldflags=""
+ if [[ -n "$IOS_SDK" ]]; then
285
+ webp_ldflags="$webp_ldflags -llzma -lz"
286
+ fi
287
+ CFLAGS="$CFLAGS $webp_cflags" LDFLAGS="$LDFLAGS $webp_ldflags" build_simple libwebp $LIBWEBP_VERSION \
288
--enable-libwebpmux --enable-libwebpdemux --disable-libwebpexamples
289
290
build_brotli
0 commit comments