You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. I'm trying to test the Fuzzer Test Suite with AFL, and here are the changes I made to the two script files. After making the changes, I tried compiling each file with build.sh. However, the compilation error is shown in bold at the end. How can I fix it?
Building with afl
afl-clang-fast 2.57b by [email protected]
afl-llvm-pass 2.57b by [email protected]
[+] Instrumented 64 locations (non-hardened mode, ratio 100%). inlinable function call in a function with debug info must have a !dbg location
call void @__sanitizer_cov_trace_pc_guard(i32 inttoptr (i64 add (i64 ptrtoint ([22 x i32] @_sancov_gen.7 to i64), i64 80) to i32*)) #14**
The text was updated successfully, but these errors were encountered:
Hi. I'm trying to test the Fuzzer Test Suite with AFL, and here are the changes I made to the two script files. After making the changes, I tried compiling each file with build.sh. However, the compilation error is shown in bold at the end. How can I fix it?
#FUZZING_ENGINE=${FUZZING_ENGINE:-"fsanitize_fuzzer"}
FUZZING_ENGINE=${FUZZING_ENGINE:-"afl"}
#AFL_SRC=${AFL_SRC:-$(dirname $(dirname $SCRIPT_DIR))/AFL}
AFL_SRC=${AFL_SRC:-/AFL-master}
#export CC=${CC:-"clang"}
#export CXX=${CXX:-"clang++"}
export CC=${CC:-"afl-clang-fast"}
export CXX=${CXX:-"afl-clang-fast++"}
Building with afl
afl-clang-fast 2.57b by [email protected]
afl-llvm-pass 2.57b by [email protected]
[+] Instrumented 64 locations (non-hardened mode, ratio 100%).
inlinable function call in a function with debug info must have a !dbg location
call void @__sanitizer_cov_trace_pc_guard(i32 inttoptr (i64 add (i64 ptrtoint ([22 x i32] @_sancov_gen.7 to i64), i64 80) to i32*)) #14**
The text was updated successfully, but these errors were encountered: