mirror of https://github.com/google/oss-fuzz.git
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:
parent
bab8233066
commit
a5ee351ed1
|
@ -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 \
|
||||||
|
|
Loading…
Reference in New Issue