diff options
author | vanhauser-thc <vh@thc.org> | 2024-10-15 15:18:51 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-10-15 15:18:51 +0200 |
commit | 20c46c0ed6465d49034939416efc979674425dd6 (patch) | |
tree | 6888b8566a71a8806914037d93b7500f6a8c4e5d | |
parent | b3d16f7b8c19c3fb06cdbb2ef8df977b6b674b59 (diff) | |
download | afl++-20c46c0ed6465d49034939416efc979674425dd6.tar.gz |
nits
-rw-r--r-- | GNUmakefile.llvm | 2 | ||||
-rw-r--r-- | docs/Changelog.md | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm index 2e806ab8..367c437f 100644 --- a/GNUmakefile.llvm +++ b/GNUmakefile.llvm @@ -163,7 +163,7 @@ endif # sanity check. # Are versions of clang --version and llvm-config --version equal? -CLANGVER = $(shell $(CC) --version | sed -E -ne '/^.*version\ (1?[0-9]\.[0-9]\.[0-9]).*/s//\1/p') +CLANGVER = $(shell $(CC) --version | sed -E -ne '/^.*version\ ([12]?[0-9]\.[0-9]\.[0-9]).*/s//\1/p') # I disable this because it does not make sense with what we did before (marc) # We did exactly set these 26 lines above with these values, and it would break diff --git a/docs/Changelog.md b/docs/Changelog.md index 5b809d61..48f67803 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -16,6 +16,8 @@ - because of bad math and undefined behaviour fixes we have to change the CMPLOG map. **YOU NEED TO RECOMPILE CMPLOG TARGETS** - fixed custom_post_process for calibration + - fixes for AFL_EXIT_ON_TIME and AFL_EXIT_WHEN_DONE, changed behaviour of + AFL_EXIT_WHEN_DONE to finish when really done :-) - frida_mode: - AFL_FRIDA_PERSISTENT_ADDR can now be be any reachable address not just a function entry |