Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: amend README with git dep for LLVM 18 #508

Closed
wants to merge 1 commit into from
Closed
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
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,14 @@ You'll need to point your Cargo.toml to use a single LLVM version feature flag c

```toml
[dependencies]
inkwell = { version = "0.4.0", features = ["llvm18-0"] }
inkwell = { version = "0.4.0", features = ["llvm17-0"] }
```

Since support for LLVM 18 is unreleased yet, you'd have to specify the crate as git dependency in your Cargo.toml:

```toml
[dependencies]
inkwell = { git = "https://github.com/TheDan64/inkwell", features = ["llvm18-0"] }
```

Supported versions:
Expand Down
Loading