afl.rs icon indicating copy to clipboard operation
afl.rs copied to clipboard

Building afl.rs instructions

Open ralpha opened this issue 5 years ago • 1 comments

I was testing out this tool, but missed some build instructions. Here are some example build instructions that worked for me:

## Install

Requirements:
- LLVM
- clang
Debian/Ubuntu based:
```bash
sudo apt-get install clang llvm
```

Install afl.rs
```bash
cargo +nightly install afl
```

Maybe add something like this to the README.md so other people can get started quicker. Or add them to the book, because there was not much there. And I had gcc installed just did not build for some reason. (maybe because llvm was not installed, installed clang first because of the error I got)

ralpha avatar Sep 27 '20 00:09 ralpha

Thanks for writing these down. I tried cargo install afl and i got errors because clang was missing. Adding such instructions would be great.

petr-tik avatar Oct 09 '20 19:10 petr-tik