mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-10 17:21:33 +00:00
8 lines
232 B
Bash
Executable File
8 lines
232 B
Bash
Executable File
#!/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 .
|
|
./build.sh
|
|
cp -fv ./afl-qemu-taint ../..
|