File: install-afl-fuzz.sh

package info (click to toggle)
ocaml-monolith 0~20250314-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,492 kB
  • sloc: ml: 4,493; makefile: 163; sh: 9
file content (14 lines) | stat: -rwxr-xr-x 267 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'

# A script that installs afl-fuzz.

cd /tmp
wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz
tar xvfz afl-latest.tgz
rm afl-latest.tgz
cd afl-*
make
# Ignore the dependency "install: all"
sudo make -o all install