Open thuanpv opened 2 years ago
I tested the command on Ubuntu 18.04 64-bit.
The reason is the LLVM_CONFIG
variable is not correct set in the makefile.
In the makefile of the project
BUILD_PROFILE = debug
OUT_DIR = target/$(BUILD_PROFILE)
CC = clang
LLVM_CONFIG = llvm-config-12 <----- here
this variable needs to be set to correct verson.
I have llvm12 installed in my computer at /usr/bin/llvm-config-12
thus it can find it there.
Just replace the LLVM_CONFIG
variable in the makefile.
in detail, the makefile download AFL++ and compile it using clang and llvm.
AFL++ is needed to instrument program.cc
as the example target.
Hi YS,
When I run make forkserver-simple, I get the following error message:
Do you know the reason? Thanks.
Thuan