diff options
author | vanhauser-thc <vh@thc.org> | 2021-11-16 11:03:53 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-11-16 11:03:53 +0100 |
commit | 268339a683aab00f8487eac1ca31ef5d6c6abc4b (patch) | |
tree | 05bead029a76420a380c5d2625360c70743e04e8 /src/afl-fuzz.c | |
parent | 464f1a78dff320609d4580a7b2493dc5b527df67 (diff) | |
download | afl++-268339a683aab00f8487eac1ca31ef5d6c6abc4b.tar.gz |
showmap -A -> -H, accurate help output
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index dfd62db8..195366bd 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -113,12 +113,17 @@ static void usage(u8 *argv0, int more_help) { "maximum.\n" " -m megs - memory limit for child process (%u MB, 0 = no limit " "[default])\n" +#if defined(__linux__) && defined(__aarch64__) " -A - use binary-only instrumentation (ARM CoreSight mode)\n" +#endif " -O - use binary-only instrumentation (FRIDA mode)\n" +#if defined(__linux__) " -Q - use binary-only instrumentation (QEMU mode)\n" " -U - use unicorn-based instrumentation (Unicorn mode)\n" " -W - use qemu-based instrumentation with Wine (Wine " - "mode)\n\n" + "mode)\n" +#endif + "\n" "Mutator settings:\n" " -D - enable deterministic fuzzing (once per queue entry)\n" |