blob: b54c3e04ce1c6b0f11aabc8a5f0b7c79d9796cba (
plain) (
blame)
1
2
3
4
5
6
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 ../..
|