From 178d78b485b30bdb39872688459f5acc899943ce Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 7 Jun 2021 19:27:30 -0400 Subject: Update to Qt 6.1.1 and LLVM 12.0.0 --- rust/binaryninjacore-sys/build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'rust/binaryninjacore-sys') diff --git a/rust/binaryninjacore-sys/build.rs b/rust/binaryninjacore-sys/build.rs index d3b02818..38a656e6 100644 --- a/rust/binaryninjacore-sys/build.rs +++ b/rust/binaryninjacore-sys/build.rs @@ -125,8 +125,8 @@ fn main() { let llvm_include_path = format!("-I{}/clang/{}/include", llvm_dir, llvm_version); bindings = bindings.clang_arg(llvm_include_path); } else if let (false, Ok(llvm_install_dir)) = (is_mac, llvm_install_dir) { - let llvm_include_path = format!("-I{}/11.0.0/lib/clang/11.0.0/include", llvm_install_dir); - env::set_var("LIBCLANG_PATH", format!("{}/11.0.0/lib", llvm_install_dir)); + let llvm_include_path = format!("-I{}/12.0.0/lib/clang/12.0.0/include", llvm_install_dir); + env::set_var("LIBCLANG_PATH", format!("{}/12.0.0/lib", llvm_install_dir)); bindings = bindings.clang_arg(llvm_include_path); } -- cgit v1.3.1