Skip to content

Commit

Permalink
Fix bindgen-cli support link static libclang (#2644)
Browse files Browse the repository at this point in the history
* Fix bindgen-cli support link static libclang

* Update CHANGELOG.md

---------

Co-authored-by: Christian Poveda <christian.poveda@ferrous-systems.com>
  • Loading branch information
inevity and pvdrz authored Sep 19, 2023
1 parent b43ab10 commit a960d97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
argument use `void` as its sole argument.
## Removed
## Fixed
- Allow compiling `bindgen-cli` with a static libclang.
## Security

# 0.68.1
Expand Down
2 changes: 1 addition & 1 deletion bindgen-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ path = "main.rs"
name = "bindgen"

[dependencies]
bindgen = { path = "../bindgen", version = "=0.68.1", features = ["__cli", "experimental"] }
bindgen = { path = "../bindgen", version = "=0.68.1", default-features = false, features = ["__cli", "experimental"] }
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
env_logger = { version = "0.10.0", optional = true }
Expand Down

0 comments on commit a960d97

Please sign in to comment.