Skip to content

Commit 21aae59

Browse files
committed
openvino-sys: no longer link to tbb
The `build.rs` script previously attempted to find the `tbb` library relative to the OpenVINO libraries themselves. This step is no longer necessary and has been removed. At some point in the future, we will remove the "find TBB" logic in `openvino-finder` as well.
1 parent 3e732aa commit 21aae59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/openvino-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use std::env;
22
use std::path::{Path, PathBuf};
33

44
// These are the libraries we expect to be available to dynamically link to:
5-
const LIBRARIES: &[&str] = &["openvino", "openvino_c", "tbb"];
5+
const LIBRARIES: &[&str] = &["openvino", "openvino_c"];
66

77
// A user-specified environment variable indicating that `build.rs` should not attempt to link
88
// against any libraries (e.g. a doc build, user may link them later).

0 commit comments

Comments
 (0)