From 8789149c9d20bd6a704318d10f7179326855439a Mon Sep 17 00:00:00 2001 From: Joachim Metz Date: Sun, 11 Sep 2022 15:33:10 +0200 Subject: [PATCH] libyal: work-around for missing i386 dependencies (#8465) --- projects/libyal/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/libyal/build.sh b/projects/libyal/build.sh index 49bfe8c18..f641fe865 100755 --- a/projects/libyal/build.sh +++ b/projects/libyal/build.sh @@ -36,7 +36,9 @@ do # Prepare the project source for build. ./synclibs.sh ./autogen.sh - ./configure --enable-shared=no + # OSSFuzz cross-compiles certain architectures which can lead to a partial + # installed dependencies. + ./configure --enable-shared=no --with-openssl=no --with-zlib=no # Build the project and fuzzer binaries. make -j$(nproc) LIB_FUZZING_ENGINE=${LIB_FUZZING_ENGINE}