Signed-off-by: David Korczynski <david@adalogics.com>
pull/214/head
David Korczynski 5 months ago
parent 85303b8c22
commit 346dd0f6e1
  1. 4
      .clusterfuzzlite/Dockerfile
  2. 6
      .clusterfuzzlite/build.sh

@ -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

@ -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

Loading…
Cancel
Save