diff options
author | hexcoder- <heiko@hexco.de> | 2020-02-16 10:44:53 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-02-16 10:44:53 +0100 |
commit | 37f865ab244e32c2f9307014eb4da0d5561a45bd (patch) | |
tree | f608ac28ee5247d88b4dd1e1c38a38ae9791977a /docs/notes_for_asan.md | |
parent | b133fa3b6e18d46e53fddba10f09097c9bef6868 (diff) | |
download | afl++-37f865ab244e32c2f9307014eb4da0d5561a45bd.tar.gz |
fix UBSAN handling, update docs
Diffstat (limited to 'docs/notes_for_asan.md')
-rw-r--r-- | docs/notes_for_asan.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/notes_for_asan.md b/docs/notes_for_asan.md index c10a9726..9c49dc1f 100644 --- a/docs/notes_for_asan.md +++ b/docs/notes_for_asan.md @@ -136,7 +136,8 @@ istruction that will cause SIGILL (ud2 on x86) when an undefined behaviour is detected. This is the option that you want to use when combining AFL++ and UBSan. -AFL_USE_UBSAN=1 env var will add this compiler flag to afl-clang-fast for you. +AFL_USE_UBSAN=1 env var will add this compiler flag to afl-clang-fast, +afl-gcc-fast and afl-gcc for you. Old versions of UBSAN don't offer a consistent way to abort() on fault conditions or to terminate with a distinctive exit code |