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

7 lines
215 B

#!/bin/bash
$CC $CFLAGS -c parson.c
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