From 41050af5b5c4d3a5b26ace485f02be6764525eb5 Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Wed, 22 May 2024 19:41:59 +0200 Subject: [PATCH] fuzz: fix build of oss-introspector (#2452) --- tests/ossfuzz.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ossfuzz.sh b/tests/ossfuzz.sh index 45187e98b29..b6631fbe7db 100644 --- a/tests/ossfuzz.sh +++ b/tests/ossfuzz.sh @@ -43,7 +43,7 @@ fi cd ndpi # Set LDFLAGS variable and `--with-only-libndpi` option as workaround for the # "missing dependencies errors" in the introspector build. See #8939 -LDFLAGS="-lpcap" ./autogen.sh --enable-fuzztargets --with-only-libndpi --enable-tls-sigs +RANLIB=llvm-ranlib LDFLAGS="-L/usr/local/lib -lpcap" ./autogen.sh --enable-fuzztargets --with-only-libndpi --enable-tls-sigs make -j$(nproc) # Copy fuzzers ls fuzz/fuzz* | grep -v "\." | while read i; do cp $i $OUT/; done