From 56df2613f34a291fb8106e4e571a92d264eb0ea7 Mon Sep 17 00:00:00 2001 From: Denis Kasak Date: Mon, 10 May 2021 14:29:01 +0200 Subject: [PATCH] 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. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8c2b371..d4485ed 100644 --- a/Makefile +++ b/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)