aboutsummaryrefslogtreecommitdiff
path: root/tests/ossfuzz.sh
diff options
context:
space:
mode:
authorIvan Nardi <12729895+IvanNardi@users.noreply.github.com>2024-05-22 19:41:59 +0200
committerGitHub <noreply@github.com>2024-05-22 19:41:59 +0200
commit41050af5b5c4d3a5b26ace485f02be6764525eb5 (patch)
tree87af7a7c0a75f1c3aadaa5fc8bd9f200c61a2469 /tests/ossfuzz.sh
parent521ce609c8a052e9dc65f950cec7955f5f36fac4 (diff)
fuzz: fix build of oss-introspector (#2452)
Diffstat (limited to 'tests/ossfuzz.sh')
-rw-r--r--tests/ossfuzz.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ossfuzz.sh b/tests/ossfuzz.sh
index 45187e98b..b6631fbe7 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