summaryrefslogtreecommitdiffstats
path: root/meta-agl/recipes-automotive/hvacplugin/files/0001-Fix-boost-include-statement.patch
AgeCommit message (Collapse)AuthorFilesLines
2016-01-12HVAC plugin: support Yocto 2.0, merge AGL patchesManuel Bachmann1-48/+0
This commit : - fixes CMakeLists.txt for CMake 3.3.1 (Yocto 2.0) ; - merges Jan-Simon MÃller's AGL patch for cross-compilation (gerrit.automotivelinux.org/gerrit/gitweb?p=AGL/meta-agl .git;a=commit;h=8c7ab6abb2baae052ac5477ae45a35460da6b2df). Change-Id: I317eade139d0c7f637bb603fd9301a0a5ce134c3 Signed-off-by: Manuel Bachmann <mbc@iot.bzh>
2016-01-04Fix hvacplugin cross-compilation issue due to wrong path in CMakeLists.txtJan-Simon Möller1-0/+48
This patch fixes a cross-compilation issue with hvacplugin. The absolute path set for Boost_INCLUDE_DIRS is not cross-compilation save. According to https://cmake.org/Wiki/CMake:How_To_Find_Libraries we better use find_package(Boost REQUIRED) . Otherwise bitbake might fail with: ERROR: QA Issue: hvacplugin: The compile log indicates that host include and/or library paths were used. Please check the log .../hvacplugin/0.1-r0/temp/log.do_compile' for more information. [compile-host-path] ERROR: QA run found fatal errors. Please consider fixing them. ERROR: Function failed: do_package_qa Due to: cc1plus: warning: include location "/usr/include/boost" is unsafe for cross-compilation [-Wpoison-system-directories] Change-Id: I114962b60fdb0162f9e9a88964705cbbba901278 Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>