From 04cd23074febba4e4d75e00113435beacf0c8a73 Mon Sep 17 00:00:00 2001 From: Adam Korczynski Date: Wed, 23 Jul 2025 12:49:49 +0100 Subject: [PATCH] build tests in oss-fuzz Signed-off-by: Adam Korczynski --- tests/ossfuzz.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/ossfuzz.sh b/tests/ossfuzz.sh index e63a3d2c3..cf35a403e 100644 --- a/tests/ossfuzz.sh +++ b/tests/ossfuzz.sh @@ -42,9 +42,9 @@ fi # build project cd ndpi -# Set LDFLAGS variable and `--with-only-libndpi` option as workaround for the -# "missing dependencies errors" in the introspector build. See #8939 -RANLIB=llvm-ranlib LDFLAGS="-L/usr/local/lib -lpcap" ./autogen.sh --enable-fuzztargets --with-only-libndpi --enable-tls-sigs +# Set LDFLAGS variable as workaround for the "missing +# dependencies errors" in the introspector build. See #8939 +RANLIB=llvm-ranlib LDFLAGS="-L/usr/local/lib -lpcap" ./autogen.sh --enable-fuzztargets --enable-tls-sigs make -j$(nproc) # Copy fuzzers ls fuzz/fuzz* | grep -v "\." | while read -r i; do cp "$i" "$OUT"/; done