From 430958e35ba1e71402a51de5c780d497ade1d0ee Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Wed, 19 Jun 2024 20:37:54 +0200 Subject: [PATCH] doc: amend README with git dep for LLVM 18 --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 66ab2a2d5d9..cae847d63e1 100644 --- a/README.md +++ b/README.md @@ -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: