From 06781f8c81a33766804a9a0c37e4c16bd2ed6232 Mon Sep 17 00:00:00 2001 From: Yogesh Tyagi Date: Mon, 18 Mar 2024 14:58:33 +0800 Subject: openvino-inference-engine : upgrade 2023.3.0 -> 2024.0.0 - Removed the Cython patch, which is no longer relevant as Legacy IE python API has been removed: https://github.com/openvinotoolkit/openvino/commit/a561a2a484049cc63fd0959646ef5c1cb8f3c2e6 - Remove cython dependency as well from recipe - Remove the switch disabling MLAS support. It's enabled by default. Fetch the submodule as well and include the file pointing to its Apache-2.0 license in LIC_FILES_CHKSUM. - Update conditional check to exclude directories which have "/usr/include" in them to not add /usr/include as well. - Backport a patch which solves the build failure caused by setting the "ENABLE_OV_ONNX_FRONTEND" option to "OFF" Release Notes: https://github.com/openvinotoolkit/openvino/releases/tag/2024.0.0 Signed-off-by: Yogesh Tyagi Signed-off-by: Anuj Mittal --- .../0001-cmake-fix-build-when-using-sysroot.patch | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create 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 new file mode 100644 index 00000000..d251f21b --- /dev/null +++ b/dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-cmake-fix-build-when-using-sysroot.patch @@ -0,0 +1,32 @@ +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