mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-17 12:18:08 +00:00
fix nits
This commit is contained in:
@ -550,7 +550,7 @@ all_done: test_build
|
|||||||
@test -e SanitizerCoverageLTO.so && echo "[+] LLVM LTO mode for 'afl-cc' successfully built!" || echo "[-] LLVM LTO mode for 'afl-cc' failed to build, this would need LLVM 11+, see instrumentation/README.lto.md how to build it"
|
@test -e SanitizerCoverageLTO.so && echo "[+] LLVM LTO mode for 'afl-cc' successfully built!" || echo "[-] LLVM LTO mode for 'afl-cc' failed to build, this would need LLVM 11+, see instrumentation/README.lto.md how to build it"
|
||||||
@test -e afl-gcc-pass.so && echo "[+] gcc_plugin for 'afl-cc' successfully built!" || echo "[-] gcc_plugin for 'afl-cc' failed to build, unless you really need it that is fine - or read instrumentation/README.gcc_plugin.md how to build it"
|
@test -e afl-gcc-pass.so && echo "[+] gcc_plugin for 'afl-cc' successfully built!" || echo "[-] gcc_plugin for 'afl-cc' failed to build, unless you really need it that is fine - or read instrumentation/README.gcc_plugin.md how to build it"
|
||||||
@echo "[+] All done! Be sure to review the README.md - it's pretty short and useful."
|
@echo "[+] All done! Be sure to review the README.md - it's pretty short and useful."
|
||||||
@if [ "`uname`" = "Darwin" ]; then printf "\nWARNING: Fuzzing on MacOS X is slow because of the unusually high overhead of\nfork() on this OS. Consider using Linux or *BSD for fuzzing software not\nspecific for MacOs.\n\n"; fi
|
@if [ "`uname`" = "Darwin" ]; then printf "\nWARNING: Fuzzing on MacOS X is slow because of the unusually high overhead of\nfork() on this OS. Consider using Linux or *BSD for fuzzing software not\nspecifically for MacOS.\n\n"; fi
|
||||||
@! tty <&1 >/dev/null || printf "\033[0;30mNOTE: If you can read this, your terminal probably uses white background.\nThis will make the UI hard to read. See docs/status_screen.md for advice.\033[0m\n" 2>/dev/null
|
@! tty <&1 >/dev/null || printf "\033[0;30mNOTE: If you can read this, your terminal probably uses white background.\nThis will make the UI hard to read. See docs/status_screen.md for advice.\033[0m\n" 2>/dev/null
|
||||||
|
|
||||||
.NOTPARALLEL: clean all
|
.NOTPARALLEL: clean all
|
||||||
|
@ -382,8 +382,8 @@ checks or alter some of the more exotic semantics of the tool:
|
|||||||
may complain of high load prematurely, especially on systems with low core
|
may complain of high load prematurely, especially on systems with low core
|
||||||
counts. To avoid the alarming red color, you can set `AFL_NO_CPU_RED`.
|
counts. To avoid the alarming red color, you can set `AFL_NO_CPU_RED`.
|
||||||
|
|
||||||
- In QEMU mode (-Q), Unicorn mode (-U) and Frida mode (-O), `AFL_PATH` will
|
- In QEMU mode (-Q) and Frida mode (-O), `AFL_PATH` will
|
||||||
be searched for afl-qemu-trace.
|
be searched for afl-qemu-trace and afl-frida-trace.so.
|
||||||
|
|
||||||
- In QEMU mode (-Q), setting `AFL_QEMU_CUSTOM_BIN` cause afl-fuzz to skip
|
- In QEMU mode (-Q), setting `AFL_QEMU_CUSTOM_BIN` cause afl-fuzz to skip
|
||||||
prepending `afl-qemu-trace` to your command line. Use this if you wish to use a
|
prepending `afl-qemu-trace` to your command line. Use this if you wish to use a
|
||||||
|
@ -360,6 +360,8 @@ if ! command -v "$CROSS" > /dev/null ; then
|
|||||||
make -C unsigaction && echo "[+] unsigaction ready"
|
make -C unsigaction && echo "[+] unsigaction ready"
|
||||||
echo "[+] Building libqasan ..."
|
echo "[+] Building libqasan ..."
|
||||||
make -C libqasan && echo "[+] unsigaction ready"
|
make -C libqasan && echo "[+] unsigaction ready"
|
||||||
|
echo "[+] Building qemu libfuzzer helpers ..."
|
||||||
|
make -C ../utils/aflpp_driver
|
||||||
else
|
else
|
||||||
echo "[!] Cross compiler $CROSS could not be found, cannot compile libcompcov libqasan and unsigaction"
|
echo "[!] Cross compiler $CROSS could not be found, cannot compile libcompcov libqasan and unsigaction"
|
||||||
fi
|
fi
|
||||||
|
@ -866,7 +866,7 @@ void show_stats(afl_state_t *afl) {
|
|||||||
|
|
||||||
if (unlikely(afl->custom_only)) {
|
if (unlikely(afl->custom_only)) {
|
||||||
|
|
||||||
strcpy(tmp, "disabled (custom mutator only mode)");
|
strcpy(tmp, "disabled (custom-mutator-only mode)");
|
||||||
|
|
||||||
} else if (likely(afl->skip_deterministic)) {
|
} else if (likely(afl->skip_deterministic)) {
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user