Conversation
- Bump version to 220.0.0 - Update LLVM_MAJOR_VERSION to 22 - Add 22 new dialect headers (Affine, AMX, ArmNeon, ArmSME, ArmSVE, Bufferization, Complex, DLTI, Index, MPI, OpenACC, PDLInterp, Ptr, Shard, SMT, Tosa, UB, VCIX, WasmSSA, X86Vector, XeGPU, XeVM) - Add new target header (ExportSMTLIB) - Update CI and docs for LLVM 22
raviqqe
pushed a commit
that referenced
this pull request
Mar 20, 2026
…heck feature (#85) Drop the static `wrapper.h` and generate it at build time in `build.rs`. `generate_wrapper` walks `{includedir}/mlir-c/` recursively, skips `Bindings/`, sorts the results, and writes a `#include` list to `$OUT_DIR/wrapper.h`. New or removed dialect headers are picked up automatically, including out-of-tree ones. Add a `no-version-check` cargo feature that skips the `llvm-config --version` check. Enables building against MLIR main/trunk without patching the crate. Fixes #43 . Bump version to 220.0.1. Update README to document both the auto-discovery behavior and the `no-version-check` feature. (Depends first on pr #84 )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps crate version to 220.0.0 and sets
LLVM_MAJOR_VERSIONto 22 inbuild.rs.wrapper.hadds 22 new dialect C API headers (Affine, AMX, ArmNeon, ArmSME, ArmSVE, Bufferization, Complex, DLTI, Index, MPI, OpenACC, PDLInterp, Ptr, Shard, SMT, Tosa, UB, VCIX, WasmSSA, X86Vector, XeGPU, XeVM) and one new target header (ExportSMTLIB).tools/setup.shandREADME.mdupdated to reference LLVM 22.Tested against LLVM 22.1.1.
Fixes #66