You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 2022 release changes the names of several of the shared libraries
produced by OpenVINO as well as their directory structure. The C API is
still available, however, so this change continues to use that for the
time being instead of the newer v2.0 API.
Because of the significant changes to the release structure, there is a
decision to be made regarding backwards compatibility--e.g., using older
versions of OpenVINO with this binding crate. This change makes the
decision to stop supporting pre-2022 installations of OpenVINO in
ongoing versions of this crate: once this crate is released (`v0.4.0`),
users will have to decide whether to use this version for the newest
versions of OpenVINO or downgrade to a previously-released crate
(`v0.3.*`) for pre-2022 versions of OpenVINO.
panic!("Unable to find an OpenVINO installation on your system; build with runtime linking using `--features runtime-linking` or build from source with `--features from-source`.")
@@ -63,7 +56,7 @@ fn main() {
63
56
ifletSome(path) = c_api_library_path {
64
57
record_library_path(path);
65
58
}else{
66
-
println!("cargo:warning=openvino-sys cannot find the `inference_engine_c_api` library in any of the library search paths: {:?}",&library_search_paths);
59
+
println!("cargo:warning=openvino-sys cannot find the `openvino_c` library in any of the library search paths: {:?}",&library_search_paths);
67
60
println!("cargo:warning=Proceeding with an empty value of {}; users must specify this location at runtime, e.g. `Core::new(Some(...))`.",ENV_OPENVINO_LIB_PATH);
0 commit comments