Switch to afl-clang-fast(++).
This type of instrumentation is much faster (several times over) and supports much more features than afl-gcc/afl-g++, though it requires a LLVM/clang installation.
This commit is contained in:
parent
64afab9364
commit
56df2613f3
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -11,8 +11,8 @@ FUZZING_OPTIMIZE_FLAGS ?= -O3
|
|||
CC = gcc
|
||||
EMCC = emcc
|
||||
EMAR = emar
|
||||
AFL_CC = afl-gcc
|
||||
AFL_CXX = afl-g++
|
||||
AFL_CC = afl-clang-fast
|
||||
AFL_CXX = afl-clang-fast++
|
||||
AR = ar
|
||||
|
||||
UNAME := $(shell uname)
|
||||
|
|
Loading…
Reference in a new issue