Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,17 @@ If you don't have `clang` installed or it's too old, you'll need to download and

Apple Clang doesn't come with libFuzzer, so you'll need to install a new version of LLVM from head. Follow the instructions in Installing Against New LLVM below.

#### Installing Against New LLVM
#### Using Homebrew (Recommended)
```bash
brew install llvm

# On Apple Silicon (M1/M2/M3):
CLANG_BIN="/opt/homebrew/opt/llvm/bin/clang" pip3 install atheris

# Note: If you encounter errors regarding setuptools or pybind11, try installing without build isolation:
pip3 install pybind11 setuptools && CLANG_BIN="..." pip3 install atheris --no-build-isolation
```
#### Building LLVM from Source (Fallback)

```bash
# Building LLVM
Expand Down