Signed-off-by: David Korczynski <david@adalogics.com>
This commit is contained in:
David Korczynski 2024-05-11 07:16:49 -07:00
parent 85303b8c22
commit 346dd0f6e1
2 changed files with 3 additions and 9 deletions

View File

@ -1,8 +1,6 @@
FROM gcr.io/oss-fuzz-base/base-builder
RUN apt-get update && apt-get install -y make autoconf automake libtool cmake \
pkg-config curl check
RUN apt-get update && apt-get install -y make autoconf automake libtool
COPY . $SRC/parson
COPY .clusterfuzzlite/build.sh $SRC/build.sh
COPY .clusterfuzzlite/*.cpp $SRC/
COPY .clusterfuzzlite/*.c $SRC/
WORKDIR parson

View File

@ -1,9 +1,5 @@
#!/bin/bash
for file in "parson.c"; do
$CC $CFLAGS -c ${file}
done
rm -f ./test*.o
$CC $CFLAGS -c parson.c
llvm-ar rcs libfuzz.a *.o