mirror of
https://github.com/DaveGamble/cJSON.git
synced 2025-01-13 18:57:57 +08:00
10 lines
250 B
Bash
Executable File
10 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p libfuzzer-build || exit 1
|
|
cd libfuzzer-build || exit 1
|
|
#cleanup
|
|
rm -r -- *
|
|
|
|
CC=clang cmake ../.. -DENABLE_FUZZING=On -DENABLE_SANITIZERS=On -DBUILD_SHARED_LIBS=Off -DCMAKE_BUILD_TYPE=Debug -DENABLE_LIBFUZZER=On
|
|
make fuzz-target
|