diff options
author | van Hauser <vh@thc.org> | 2019-09-04 12:14:35 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-09-04 12:14:35 +0200 |
commit | 52bfd1fc3d6c1e6610469dbddad19aacb4e7f848 (patch) | |
tree | b5de5e1cbcdc096a7d57e82aa0edb89d23baa26d /qemu_mode/build_qemu_support.sh | |
parent | a8d96967c426f031d61dd91287906a28975334fb (diff) | |
download | afl++-52bfd1fc3d6c1e6610469dbddad19aacb4e7f848.tar.gz |
added man pages
Diffstat (limited to 'qemu_mode/build_qemu_support.sh')
-rwxr-xr-x | qemu_mode/build_qemu_support.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh index 35f5b8ca..88726be4 100755 --- a/qemu_mode/build_qemu_support.sh +++ b/qemu_mode/build_qemu_support.sh @@ -112,7 +112,8 @@ if [ "$CKSUM" = "$QEMU_SHA384" ]; then else - echo "[-] Error: signature mismatch on $ARCHIVE (perhaps download error?)." + echo "[-] Error: signature mismatch on $ARCHIVE (perhaps download error?), removing archive ..." + rm -f "$ARCHIVE" exit 1 fi @@ -200,6 +201,8 @@ if [ "$ORIG_CPU_TARGET" = "" ]; then echo "[+] Instrumentation tests passed. " echo "[+] All set, you can now use the -Q mode in afl-fuzz!" + cd qemu_mode || exit 1 + else echo "[!] Note: can't test instrumentation when CPU_TARGET set." @@ -207,4 +210,9 @@ else fi +echo "[+] Building libcompcov ..." +make -C libcompcov +echo "[+] libcompcov ready" +echo "[+] All done for qemu_mode, enjoy!" + exit 0 |