Skip to content

Commit

Permalink
Log the libclang path.
Browse files Browse the repository at this point in the history
  • Loading branch information
emilio committed Dec 30, 2018
1 parent 7c24f6b commit 69a5b4a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ cexpr = "0.3.3"
cfg-if = "0.1.0"
# This kinda sucks: https://github.com/rust-lang/cargo/issues/1982
clap = "2"
clang-sys = { version = "0.26", features = ["runtime", "clang_6_0"] }
clang-sys = { version = "0.26.4", features = ["runtime", "clang_6_0"] }
lazy_static = "1"
peeking_take_while = "0.1.2"
quote = { version = "0.6", default-features = false }
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1673,6 +1673,8 @@ impl Bindings {
) -> Result<Bindings, ()> {
ensure_libclang_is_loaded();

debug!("Generating bindings, libclang at {}", clang_sys::get_library().unwrap().path().display());

options.build();

// Filter out include paths and similar stuff, so we don't incorrectly
Expand Down

0 comments on commit 69a5b4a

Please sign in to comment.