summaryrefslogtreecommitdiffstats
path: root/dynamic-layers/openembedded-layer/recipes-support/opencv/files/7cecc9138b89e1946e3e515727bb69b2ab119806.patch
diff options
context:
space:
mode:
authorYogesh Tyagi <yogesh.tyagi@intel.com>2023-12-01 08:48:36 +0530
committerAnuj Mittal <anuj.mittal@intel.com>2023-12-01 11:43:15 +0800
commitc93900c6ed774496dd7a4974e76e9767e87591d3 (patch)
treeef3cb758f8bf1de87b75dac56796531d7b21f8a4 /dynamic-layers/openembedded-layer/recipes-support/opencv/files/7cecc9138b89e1946e3e515727bb69b2ab119806.patch
parentb3fca0034e9783eafa86d1ae824ec396ede14d6c (diff)
downloadmeta-intel-c93900c6ed774496dd7a4974e76e9767e87591d3.tar.gz
openvino-inference-engine: upgrade 2023.1.0 -> 2023.2.0
* Release notes: https://github.com/openvinotoolkit/openvino/releases/tag/2023.2.0 * Drop the patches which included header cstdint to fix build issues with gcc13 as these changes are already incorporated in the upstream code. * gflags and zlib are now used as bundled dependencies https://github.com/openvinotoolkit/openvino/pull/20762 * Refresh the patches Signed-off-by: Yogesh Tyagi <yogesh.tyagi@intel.com> Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Diffstat (limited to 'dynamic-layers/openembedded-layer/recipes-support/opencv/files/7cecc9138b89e1946e3e515727bb69b2ab119806.patch')
-rw-r--r--dynamic-layers/openembedded-layer/recipes-support/opencv/files/7cecc9138b89e1946e3e515727bb69b2ab119806.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/files/7cecc9138b89e1946e3e515727bb69b2ab119806.patch b/dynamic-layers/openembedded-layer/recipes-support/opencv/files/7cecc9138b89e1946e3e515727bb69b2ab119806.patch
deleted file mode 100644
index f744bd19..00000000
--- a/dynamic-layers/openembedded-layer/recipes-support/opencv/files/7cecc9138b89e1946e3e515727bb69b2ab119806.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 7cecc9138b89e1946e3e515727bb69b2ab119806 Mon Sep 17 00:00:00 2001
2From: Sergei Trofimovich <slyich@gmail.com>
3Date: Thu, 26 May 2022 07:11:37 +0100
4Subject: [PATCH] add missing <cstdint> header inclusion (gcc-13 support)
5
6Without the change ade build fails on this week's gcc-13 snapshot as:
7
8 [ 77%] Building CXX object sources/ade/CMakeFiles/ade.dir/source/topological_sort.cpp.o
9 In file included from ade/sources/ade/include/ade/passes/topological_sort.hpp:17,
10 from ade/sources/ade/source/topological_sort.cpp:7:
11 ade/sources/ade/include/ade/typed_graph.hpp:101:10: error: 'uintptr_t' in namespace 'std' does not name a type
12 101 | std::uintptr_t m_srcGraph;
13 | ^~~~~~~~~
14
15Upstream-Status: Backport
16Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
17---
18 sources/ade/include/ade/typed_graph.hpp | 1 +
19 1 file changed, 1 insertion(+)
20
21diff --git a/sources/ade/include/ade/typed_graph.hpp b/sources/ade/include/ade/typed_graph.hpp
22index d9676e6..8a27578 100644
23--- a/sources/ade/include/ade/typed_graph.hpp
24+++ b/sources/ade/include/ade/typed_graph.hpp
25@@ -9,6 +9,7 @@
26 #ifndef ADE_TYPED_GRAPH_HPP
27 #define ADE_TYPED_GRAPH_HPP
28
29+#include <cstdint>
30 #include <unordered_set>
31 #include <string>
32