You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
parson/.clusterfuzzlite/build.sh

10 lines
264 B

#!/bin/bash
for file in "parson.c"; do
$CC $CFLAGS -c ${file}
done
rm -f ./test*.o
llvm-ar rcs libfuzz.a *.o
$CC $CFLAGS $LIB_FUZZING_ENGINE $SRC/fuzzer.c -Wl,--whole-archive $SRC/parson/libfuzz.a -Wl,--allow-multiple-definition -I$SRC/parson/ -o $OUT/fuzzer