Skip to content
Merged
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
19 changes: 19 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,25 @@ Project requirements:
- Docker (running)
- Z3 solver library (for the policy prover crate)

### macOS build tools

Install Apple Command Line Tools before building locally:

```bash
xcode-select --install
```

If Cargo fails while building `protobuf-src` with an error such as
`fatal error: 'utility' file not found`, `fatal error: 'cstdlib' file not
found`, or `A compiler with support for C++11 language features is required`,
your Command Line Tools install may not expose the libc++ headers on the
compiler's default include path. Reinstall Command Line Tools to correct the error:

```bash
sudo rm -rf /Library/Developer/CommandLineTools
xcode-select --install
```

### Z3 installation

The `openshell-prover` crate links against the system Z3 library via pkg-config.
Expand Down
Loading