Skip to content

Commit 76bb102

Browse files
committed
XXX force deps_file off
1 parent ec898e4 commit 76bb102

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ mod clang_ast {
156156

157157
let deps_filepath = out_dir.join("BindgenClangInterface.deps");
158158
println!("cargo:rustc-link-search=native={}", llvm_lib_dir);
159-
if deps_filepath.is_file() {
159+
if false && deps_filepath.is_file() {
160160
// Our CMake script was able to generate a list of dependencies for
161161
// us. This should be more accurate than what we build here.
162162
let deps_file = fs::read_to_string(deps_filepath)

0 commit comments

Comments
 (0)