-
Notifications
You must be signed in to change notification settings - Fork 26
wip: checking compilation without libclang #750
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -210,8 +210,7 @@ features = ["dev-context-only-utils"] | |
| # Avoid the vendored bzip2 within rocksdb-sys that can cause linker conflicts | ||
| # when also using the bzip2 crate | ||
| version = "0.22.0" | ||
| # default-features = false | ||
| # features = ["lz4"] | ||
| features = ["lz4"] | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Disable default features alongside the lz4 feature to avoid libclang dependency. To enable only LZ4 compression: default-features = false features = ["lz4"]. By default, the bindgen-runtime feature enables the runtime feature of bindgen, which dynamically links to libclang and is suitable for most platforms and enabled by default. Since the PR objective is compilation without libclang, add 🤖 Prompt for AI Agents |
||
|
|
||
| [patch.crates-io] | ||
| # some solana dependencies have solana-storage-proto as dependency | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update step name to reflect actual packages installed.
The step name mentions "LLVM/Clang" but
libclang-devis no longer being installed. Update the name to match the actual behavior.Apply this diff to fix the inconsistency:
📝 Committable suggestion
🤖 Prompt for AI Agents