File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
crates/openvino-finder/src Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -241,17 +241,35 @@ cfg_if! {
241
241
const KNOWN_INSTALLATION_SUBDIRECTORIES : & [ & str ] = & [
242
242
"runtime/lib/intel64/Release" ,
243
243
"runtime/lib/intel64" ,
244
- "runtime/3rdparty/tbb/lib" ,
244
+ "runtime/lib/arm64/Release" ,
245
+ "runtime/lib/arm64" ,
246
+ "runtime/lib/aarch64/Release" ,
247
+ "runtime/lib/aarch64" ,
248
+ "runtime/lib/armv7l" ,
249
+ "runtime/lib/armv7l/Release" ,
245
250
"runtime/bin/intel64/Release" ,
246
251
"runtime/bin/intel64" ,
252
+ "runtime/bin/arm64/Release" ,
253
+ "runtime/bin/arm64" ,
247
254
"runtime/3rdparty/tbb/bin" ,
255
+ "runtime/3rdparty/tbb/lib" ,
248
256
] ;
249
257
250
258
const KNOWN_BUILD_SUBDIRECTORIES : & [ & str ] = & [
251
259
"bin/intel64/Debug/lib" ,
252
260
"bin/intel64/Debug" ,
253
261
"bin/intel64/Release/lib" ,
262
+ "bin/arm64/Debug/lib" ,
263
+ "bin/arm64/Debug" ,
264
+ "bin/arm64/Release/lib" ,
265
+ "bin/aarch64/Debug/lib" ,
266
+ "bin/aarch64/Debug" ,
267
+ "bin/aarch64/Release/lib" ,
268
+ "bin/armv7l/Debug/lib" ,
269
+ "bin/armv7l/Debug" ,
270
+ "bin/armv7l/Release/lib" ,
254
271
"temp/tbb/lib" ,
272
+ "temp/tbb/bin" ,
255
273
] ;
256
274
257
275
/// Find the path to the `plugins.xml` configuration file.
You can’t perform that action at this time.
0 commit comments