mirror of
https://gitee.com/jiuyilian/embedded-framework.git
synced 2025-01-06 10:16:51 -05:00
10 lines
192 B
Bash
Executable File
10 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
mkdir -p afl-build || exit 1
|
|
cd afl-build || exit 1
|
|
#cleanup
|
|
rm -r -- *
|
|
|
|
CC=afl-clang-fast cmake ../.. -DENABLE_FUZZING=On -DENABLE_SANITIZERS=On -DBUILD_SHARED_LIBS=Off
|
|
make afl
|