mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
14 lines
337 B
Bash
Executable File
14 lines
337 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd "${0%/*}"
|
|
rm afl-latest.tgz
|
|
wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz || exit
|
|
tar -xzvf afl-latest.tgz
|
|
rm afl-latest.tgz
|
|
cd afl-*
|
|
make || exit
|
|
cd llvm_mode
|
|
# may need to prepend LLVM_CONFIG=/usr/bin/llvm-config-3.8 or similar, depending on the system
|
|
make || exit
|
|
cd ../..
|
|
rm -rf afl
|
|
mv afl-* afl |