Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-08-31 | replace non portable echo -n with printf | hexcoder- | |
2020-08-31 | merge conflicts | Andrea Fioraldi | |
2020-08-31 | better fix for #539 | Andrea Fioraldi | |
2020-08-31 | update changelog | van Hauser | |
2020-08-31 | Merge pull request #539 from hazimeh/dev | van Hauser | |
Fixed stack use-after-return bug in strntoll | |||
2020-08-31 | Merge pull request #534 from AFLplusplus/dev | van Hauser | |
push to stable for GSOC | |||
2020-08-31 | Merge pull request #538 from ploppelop/patch-1 | van Hauser | |
Update parallel_fuzzing.md | |||
2020-08-31 | Fixed stack use-after-return bug in strntoll | Ahmad Hazimeh | |
2020-08-31 | Update parallel_fuzzing.md | ploppelop | |
fix multisystem example | |||
2020-08-31 | Merge branch 'dev' of github.com:vanhauser-thc/AFLplusplus into dev | Dominik Maier | |
2020-08-31 | added files to gitignore | Dominik Maier | |
2020-08-31 | update gitignore | van Hauser | |
2020-08-31 | fixed build error | Dominik Maier | |
2020-08-31 | added forkserver init timeout | Dominik Maier | |
2020-08-31 | removed dummy | Dominik Maier | |
2020-08-31 | hopefully finally fix ancient apple gmake | van Hauser | |
2020-08-31 | fix docs | van Hauser | |
2020-08-31 | fix afl-gcc help output | van Hauser | |
2020-08-31 | fixed make install on mac os | Dominik Maier | |
2020-08-31 | fix make man | van Hauser | |
2020-08-31 | fix network server | van Hauser | |
2020-08-31 | fix non portable option -T for 'install' | hexcoder- | |
2020-08-31 | Fix few warnings for FreeBSD case. (#536) | David CARLIER | |
2020-08-31 | fix for MacOS sudo | van Hauser | |
2020-08-31 | omit linker option '--dynamic-list' for MacOS | hexcoder- | |
2020-08-31 | Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev | hexcoder- | |
2020-08-31 | typo | hexcoder- | |
2020-08-31 | Merge branch 'dev' of github.com:vanhauser-thc/AFLplusplus into dev | domenukk | |
2020-08-31 | fixed warning on mac | domenukk | |
2020-08-31 | Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev | hexcoder- | |
2020-08-31 | typos/wording | hexcoder- | |
2020-08-31 | Merge pull request #535 from rhertzog/manpages | van Hauser | |
Fix manpages generated by llvm_mode/GNUMakefile | |||
2020-08-31 | Fix manpages generated by llvm_mode/GNUMakefile | Raphaël Hertzog | |
* Use a build date derived from SOURCE_DATE_EPOCH like in the main Makefile * Fix the path to the binary | |||
2020-08-31 | typos | hexcoder- | |
2020-08-31 | fix warnings and weird code insert | van Hauser | |
2020-08-31 | improve documentation | van Hauser | |
2020-08-31 | rewrite documentation | van Hauser | |
2020-08-31 | fix sync script, update remote sync documentation | van Hauser | |
2020-08-31 | typos fixed. | hexcoder- | |
2020-08-31 | description for AFL_MAX_DET_EXTRAS added | Dominik Maier | |
2020-08-31 | added SO link about rand for clarification | Dominik Maier | |
2020-08-31 | Merge pull request #531 from rhertzog/extend-cflags-safe | van Hauser | |
Add -fdebug-prefix-map to CFLAGS_SAFE | |||
2020-08-31 | Merge pull request #530 from rhertzog/add-cppflags | van Hauser | |
Pass CPPFLAGS to all calls of the C compiler | |||
2020-08-31 | Merge pull request #529 from rhertzog/manpages | van Hauser | |
Manual pages related changes | |||
2020-08-31 | Merge pull request #528 from rhertzog/fix-symlinks | van Hauser | |
Fix the /usr/bin/afl-clang and afl-clang++ symlinks | |||
2020-08-31 | code-format | van Hauser | |
2020-08-29 | fix make DEBUG=1 (error seen with gcc 10.2.0) | hexcoder- | |
2020-08-28 | Fix various spelling errors (#532) | Raphaël Hertzog | |
All those spelling errors have been caught by lintian's built-in spellchecker: https://lintian.debian.org/tags/spelling-error-in-binary.html | |||
2020-08-28 | Add -fdebug-prefix-map to CFLAGS_SAFE | Raphaël Hertzog | |
In Debian, we override CFLAGS to include -fdebug-prefix-map to avoid hardcoding the build path in any generated debug information. This is to help with getting the package to build reproducibly. However you seem to voluntarily not honor CFLAGS but only CFLAGS_SAFE for a limited number of source files. This resulted in a lintian warning on Debian's side (https://lintian.debian.org/tags/file-references-package-build-path.html) pointing to /usr/lib/afl/afl-llvm-rt-64.o and /usr/lib/afl/afl-llvm-rt.o. With this commit, I'm manually adding -fdebug-prefix-map as a safe build flag to CFLAGS_SAFE. | |||
2020-08-28 | Pass CPPFLAGS to all calls of the C compiler | Raphaël Hertzog | |
This variable is a standard way to inject options for the C preprocessor. It's respected by the implicit rules of make and autoconf/automake. Debian sets this variable during package build to inject `-D_FORTIFY_SOURCE=2` and we would like afl++ to respect it. Note that this commit also adds $(CFLAGS) in the build of afl-performance.o where it was missing. It might have been on purpose but we want to keep CFLAGS everywhere as well since Debian injects various options through that variable (for hardening and reproducibility). |