Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4c719d9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "floss: Rerun topshim bindgen if underlying C++ code changes" am:...

Merge "floss: Rerun topshim bindgen if underlying C++ code changes" am: 9b5b4312 am: b474b6f9 am: 249f6ded

Original change: https://android-review.googlesource.com/c/platform/packages/modules/Bluetooth/+/1999951

Change-Id: I947d5b51c9a21a590f251dd47d3f0301560b81f2
parents 5470e5be 249f6ded
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -29,6 +29,11 @@ fn main() {
    let bt_searches =
        paths.iter().map(|tail| format!("-I{}{}", search_root, tail)).collect::<Vec<String>>();

    // Also re-run the build if anything in the C++ build changes
    for path in bt_searches.iter() {
        println!("cargo:rerun-if-changed={}", path);
    }

    // "-x" and "c++" must be separate due to a bug
    let clang_args: Vec<&str> = vec!["-x", "c++", "-std=c++17"];