diff options
author | wiz <wiz@pkgsrc.org> | 2015-04-12 14:24:20 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-04-12 14:24:20 +0000 |
commit | e3f0c58bc9fc5581d17fcdffaa89b7023e179e77 (patch) | |
tree | 39b20193f1f9b217121dd6c810c0c31b6cb998e5 /devel/afl/Makefile | |
parent | 5bbb28ee61167ec11a547881e4172ff17bc96192 (diff) | |
download | pkgsrc-e3f0c58bc9fc5581d17fcdffaa89b7023e179e77.tar.gz |
Update to 1.64b:
--------------
Version 1.64b:
--------------
- Further simplified afl-clang-fast runtime by reverting .init_array to
__attribute__((constructor(0)). This should improve compatibility with
non-ELF platforms.
- Fixed a problem with afl-clang-fast and -shared libraries. Simplified
the code by getting rid of .preinit_array and replacing it with a .comm
object. Problem reported by Charlie Eriksen.
- Removed unnecessary instrumentation density adjustment for the LLVM mode.
Reported by Jonathan Neuschafer.
--------------
Version 1.63b:
--------------
- Updated cgroups_asan/ with a new version from Sam, made a couple changes
to streamline it and keep parallel afl instances in separate groups.
- Fixed typos, thanks to Jakub Wilk.
--------------
Version 1.62b:
--------------
- Improved the handling of -x in afl-clang-fast,
- Improved the handling of low AFL_INST_RATIO settings for QEMU and
LLVM modes.
- Fixed the llvm-config bug for good (thanks to Tobias Ospelt).
--------------
Version 1.61b:
--------------
- Fixed an obscure bug compiling OpenSSL with afl-clang-fast. Patch by
Laszlo Szekeres.
- Fixed a 'make install' bug on non-x86 systems, thanks to Tobias Ospelt.
- Fixed a problem with half-broken llvm-config on Odroid, thanks to
Tobias Ospelt. (There is another odd bug there that hasn't been fully
fixed - TBD).
--------------
Version 1.60b:
--------------
- Allowed experimental/llvm_instrumentation/ to graduate to llvm_mode/.
- Removed experimental/arm_support/, since it's completely broken and likely
unnecessary with LLVM support in place.
- Added ASAN cgroups script to experimental/asan_cgroups/, updated existing
docs. Courtesy Sam Hakim and David A. Wheeler.
- Refactored afl-tmin to reduce the number of execs in common use cases.
Ideas from Jonathan Neuschafer and Turo Lamminen.
- Added a note about CLAs at the bottom of README.
- Renamed testcases_readme.txt to README.testcases for some semblance of
consistency.
- Made assorted updates to docs.
- Added MEM_BARRIER() to afl-showmap and afl-tmin, just t be safe.
--------------
Version 1.59b:
--------------
- Imported Laszlo Szekeres' experimental LLVM instrumentation into
experimental/llvm_instrumentation. I'll work on including it in the
"mainstream" version soon.
- Fixed another typo, thanks to Jakub Wilk.
Diffstat (limited to 'devel/afl/Makefile')
-rw-r--r-- | devel/afl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/afl/Makefile b/devel/afl/Makefile index 1e86b52f93b..83622dc9613 100644 --- a/devel/afl/Makefile +++ b/devel/afl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.17 2015/04/02 22:36:43 wiz Exp $ +# $NetBSD: Makefile,v 1.18 2015/04/12 14:24:20 wiz Exp $ -DISTNAME= afl-1.58b +DISTNAME= afl-1.64b CATEGORIES= devel MASTER_SITES= http://lcamtuf.coredump.cx/afl/releases/ EXTRACT_SUFX= .tgz |