diff options
author | van Hauser <vh@thc.org> | 2020-08-11 18:26:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-11 18:26:30 +0200 |
commit | 83281503b3f1d4109c6f7a6af62a2133d55f1150 (patch) | |
tree | c407463af5dcfe5e031c33036a15a87e7a0be634 /qemu_taint/build_qemu_taint.sh | |
parent | 50e76fce123f01ec83024f3bbd3190f2e1a6d387 (diff) | |
parent | b604f5eafcebb816026e198df0ea66ebcbf18421 (diff) | |
download | afl++-83281503b3f1d4109c6f7a6af62a2133d55f1150.tar.gz |
Merge pull request #498 from AFLplusplus/taint
dont merge
Diffstat (limited to 'qemu_taint/build_qemu_taint.sh')
-rwxr-xr-x | qemu_taint/build_qemu_taint.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qemu_taint/build_qemu_taint.sh b/qemu_taint/build_qemu_taint.sh new file mode 100755 index 00000000..b54c3e04 --- /dev/null +++ b/qemu_taint/build_qemu_taint.sh @@ -0,0 +1,7 @@ +#!/bin/bash +test -d qemu || git clone https://github.com/vanhauser-thc/qemu_taint qemu || exit 1 +cd qemu || exit 1 +test -d .git && { git stash ; git pull ; } +cp -fv ../../include/config.h ../../include/types.h . || exit 1 +./build.sh || exit 1 +cp -fv ./afl-qemu-taint ../.. |