summaryrefslogtreecommitdiffstats
path: root/recipes-support/opencv/opencv/0001-Dont-use-isystem.patch
diff options
context:
space:
mode:
authorChris Dimich <Chris.Dimich@boundarydevices.com>2021-03-01 16:27:43 -0800
committerOtavio Salvador <otavio@ossystems.com.br>2021-03-02 18:34:38 -0300
commitdc6bebac65d3733548de568f31ca5bfbf9e8a8a5 (patch)
tree3f3fa5ca7fb86aae9e04850f6fe781086e1e0d7c /recipes-support/opencv/opencv/0001-Dont-use-isystem.patch
parent9de81869018e78b8b861513735b85c2dbc33ca0b (diff)
downloadmeta-freescale-dc6bebac65d3733548de568f31ca5bfbf9e8a8a5.tar.gz
opencv_4.4.0.imx: add recipe
Add recipe to support additional machine learning demos and tiny dnn. Signed-off-by: Chris Dimich <Chris.Dimich@boundarydevices.com>
Diffstat (limited to 'recipes-support/opencv/opencv/0001-Dont-use-isystem.patch')
-rw-r--r--recipes-support/opencv/opencv/0001-Dont-use-isystem.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes-support/opencv/opencv/0001-Dont-use-isystem.patch b/recipes-support/opencv/opencv/0001-Dont-use-isystem.patch
new file mode 100644
index 00000000..948a80fa
--- /dev/null
+++ b/recipes-support/opencv/opencv/0001-Dont-use-isystem.patch
@@ -0,0 +1,28 @@
1From 66e50ee69fa9ee2469d349100e70d8b296c4b4dc Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 11 Sep 2018 00:21:18 -0700
4Subject: [PATCH] Dont use isystem
5
6clang really does not like it
7
8Upstream-Status: Pending
9
10Signed-off-by: Khem Raj <raj.khem@gmail.com>
11
12---
13 cmake/OpenCVPCHSupport.cmake | 2 ++
14 1 file changed, 2 insertions(+)
15
16diff --git a/cmake/OpenCVPCHSupport.cmake b/cmake/OpenCVPCHSupport.cmake
17index 08cd06def4..46c9c02da3 100644
18--- a/cmake/OpenCVPCHSupport.cmake
19+++ b/cmake/OpenCVPCHSupport.cmake
20@@ -18,6 +18,8 @@ IF(CV_GCC)
21 SET(PCHSupport_FOUND TRUE)
22 ENDIF()
23
24+ SET(CMAKE_INCLUDE_SYSTEM_FLAG_C "-I")
25+ SET(CMAKE_INCLUDE_SYSTEM_FLAG_CXX "-I")
26 SET(_PCH_include_prefix "-I")
27 SET(_PCH_isystem_prefix "-isystem")
28 SET(_PCH_define_prefix "-D")