]> code.ossystems Code Review - openembedded-core.git/commitdiff
cmake.bbclass: avoid treating imports as system includes
authorAndreas Müller <schnitzeltony@googlemail.com>
Tue, 6 Sep 2016 21:41:23 +0000 (23:41 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 7 Sep 2016 23:31:38 +0000 (00:31 +0100)
CMake sets all imported headers as system headers. This causes trouble for c++
projects [1].

Thanks to Jack Mitchell for pointing to the setting [2]. Build tested upon
meta-qt5-extra-world which had lots of fallout before.

[1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70129
[2] http://lists.openembedded.org/pipermail/openembedded-core/2016-September/126067.html

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/cmake.bbclass

index 5203d8aca1698560b3f1082727104208f0ca4434..7091f8ba81a2cb30df8fc6cd4da1c6cfc369f817 100644 (file)
@@ -120,6 +120,7 @@ cmake_do_configure() {
          -DCMAKE_INSTALL_SO_NO_EXE=0 \
          -DCMAKE_TOOLCHAIN_FILE=${WORKDIR}/toolchain.cmake \
          -DCMAKE_VERBOSE_MAKEFILE=1 \
+         -DCMAKE_NO_SYSTEM_FROM_IMPORTED=1 \
          ${EXTRA_OECMAKE} \
          -Wno-dev
 }