libvips: link with tiff before jpeg (#9575)

The libvips build is currently failing due to an API change in
`libjpeg-turbo` that "unlocked" a previously-unused feature of
`libtiff`, which means the dependency order between the two must now
change.

https://oss-fuzz-build-logs.storage.googleapis.com/index.html#libvips
This commit is contained in:
Lovell Fuller 2023-02-04 17:01:19 +00:00 committed by GitHub
parent bab8233066
commit a5ee351ed1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -223,8 +223,8 @@ for fuzzer in fuzz/*_fuzzer.cc; do
-I/usr/include/glib-2.0 \ -I/usr/include/glib-2.0 \
-I/usr/lib/x86_64-linux-gnu/glib-2.0/include \ -I/usr/lib/x86_64-linux-gnu/glib-2.0/include \
$LDFLAGS \ $LDFLAGS \
-lvips -lexif -llcms2 -ljpeg -lpng -lspng -lz \ -lvips -lexif -llcms2 -ltiff -ljpeg -lpng -lspng -lz \
-ltiff -lwebpmux -lwebpdemux -lwebp -lsharpyuv -lheif -laom \ -lwebpmux -lwebpdemux -lwebp -lsharpyuv -lheif -laom \
-limagequant -lcgif -lpdfium \ -limagequant -lcgif -lpdfium \
$LIB_FUZZING_ENGINE \ $LIB_FUZZING_ENGINE \
-Wl,-Bstatic \ -Wl,-Bstatic \