From 7497da8042641548cec0c56d191fd2d8fc4c8202 Mon Sep 17 00:00:00 2001 From: LiweiSong Date: Tue, 2 Jun 2020 18:45:49 +0800 Subject: dldt-inference-engine: fix int64_t does not name a type compile error fix compile error: inference-engine/src/mkldnn_plugin/mkldnn_memory_solver.hpp:60:9: error: 'int64_t' does not name a type | 60 | int64_t size; | | ^~~~~~~ include stdint.h to fix it. Signed-off-by: Liwei Song Signed-off-by: Anuj Mittal --- .../opencv/dldt-inference-engine_2020r1.bb | 1 + ...ry_solver.hpp-include-stdint.h-to-avoid-b.patch | 37 ++++++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-mkldnn_memory_solver.hpp-include-stdint.h-to-avoid-b.patch (limited to 'dynamic-layers') diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2020r1.bb b/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2020r1.bb index 42d223c9..ea13f392 100644 --- a/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2020r1.bb +++ b/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2020r1.bb @@ -9,6 +9,7 @@ SRC_URI = "git://github.com/opencv/dldt.git;protocol=git;branch=2020 \ https://download.01.org/opencv/2020/openvinotoolkit/2020.1/inference_engine/firmware_pcie-ma248x_942_R10.15.zip;name=ma248x \ https://download.01.org/opencv/2020/openvinotoolkit/2020.1/inference_engine/firmware_usb-ma2x8x_942_R10.15.zip;name=ma2x8x \ file://0001-Installation-and-build-fixes.patch \ + file://0001-mkldnn_memory_solver.hpp-include-stdint.h-to-avoid-b.patch \ file://run-ptest \ " diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-mkldnn_memory_solver.hpp-include-stdint.h-to-avoid-b.patch b/dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-mkldnn_memory_solver.hpp-include-stdint.h-to-avoid-b.patch new file mode 100644 index 00000000..057eff23 --- /dev/null +++ b/dynamic-layers/openembedded-layer/recipes-support/opencv/files/0001-mkldnn_memory_solver.hpp-include-stdint.h-to-avoid-b.patch @@ -0,0 +1,37 @@ +From 91d72cc97138e5349e36bba9329ae29dee814388 Mon Sep 17 00:00:00 2001 +From: Liwei Song +Date: Tue, 2 Jun 2020 09:55:49 +0000 +Subject: [PATCH] mkldnn_memory_solver.hpp: include stdint.h to avoid build + error + +fix the following compile error: + +inference-engine/src/mkldnn_plugin/mkldnn_memory_solver.hpp:60:9: error: 'int64_t' does not name a type +| 60 | int64_t size; +| | ^~~~~~~ + +include stdint.h to fix this. + +Upstream-Status: Submitted [https://github.com/openvinotoolkit/openvino/pull/729] + +Signed-off-by: Liwei Song +--- + inference-engine/src/mkldnn_plugin/mkldnn_memory_solver.hpp | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/inference-engine/src/mkldnn_plugin/mkldnn_memory_solver.hpp b/inference-engine/src/mkldnn_plugin/mkldnn_memory_solver.hpp +index 2c236a307276..aa52d29b310d 100644 +--- a/inference-engine/src/mkldnn_plugin/mkldnn_memory_solver.hpp ++++ b/inference-engine/src/mkldnn_plugin/mkldnn_memory_solver.hpp +@@ -10,6 +10,8 @@ + + #include "ie_api.h" + ++#include ++ + #include + #include + +-- +2.24.1 + -- cgit v1.2.3-54-g00ecf