From 374a26b5016fbc7d632fce0554c29229056386c7 Mon Sep 17 00:00:00 2001 From: Yogesh Tyagi Date: Thu, 2 May 2024 18:23:23 +0530 Subject: openvino-inference-engine : upgrade 2024.0.0 -> 2024.1.0 - Disable NPU plugin for now and enable it in a later change - Drop backported patch which is now avialable in this version - Drop patch which is already merged upstream - Refresh patches Release Notes: https://github.com/openvinotoolkit/openvino/releases/tag/2024.1.0 Signed-off-by: Yogesh Tyagi Signed-off-by: Anuj Mittal --- .../0001-cmake-fix-build-when-using-sysroot.patch | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-cmake-fix-build-when-using-sysroot.patch (limited to 'dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-cmake-fix-build-when-using-sysroot.patch') diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-cmake-fix-build-when-using-sysroot.patch b/dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-cmake-fix-build-when-using-sysroot.patch deleted file mode 100644 index d251f21b..00000000 --- a/dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-cmake-fix-build-when-using-sysroot.patch +++ /dev/null @@ -1,32 +0,0 @@ -From b5dfcf8bc1245e804c847745c237068eb6f19931 Mon Sep 17 00:00:00 2001 -From: Yogesh Tyagi -Date: Fri, 15 Mar 2024 16:28:41 +0800 -Subject: [PATCH] cmake: fix build when using sysroot - -When cross-compiling against a sysroot, system headers will not be at a place -that starts with /usr. Update conditional check to exclude directories -which have "/usr/include" in them to not add /usr/include as well. - -Upstream-Status: Submitted [https://github.com/openvinotoolkit/openvino/pull/23486] - -Signed-off-by: Yogesh Tyagi ---- - src/cmake/ov_parallel.cmake | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/cmake/ov_parallel.cmake b/src/cmake/ov_parallel.cmake -index 3793db98e30..819d3410531 100644 ---- a/src/cmake/ov_parallel.cmake -+++ b/src/cmake/ov_parallel.cmake -@@ -296,7 +296,7 @@ function(ov_set_threading_interface_for TARGET_NAME) - if(include_directories) - foreach(include_directory IN LISTS include_directories) - # cannot include /usr/include headers as SYSTEM -- if(NOT "${include_directory}" MATCHES "^/usr.*$") -+ if(NOT "${include_directory}" MATCHES ".*/usr/include.*$") - target_include_directories(${TARGET_NAME} SYSTEM - ${LINK_TYPE} $) - else() --- -2.34.1 - -- cgit v1.2.3-54-g00ecf