Re: [OE-core] [PATCH 3/5] cmake.bbclass: append includedir to implicit include dirs

2019-07-10 Thread Douglas Royds via Openembedded-core
An error in my analysis below: We *do* delete the dependency files in the in-tree build case as well. The side-effect is masked in both in-tree and out-of-tree build cases except here at Tait, where we don't delete the entire build at configure time, due to a 20min+ rebuild time, even with the

Re: [OE-core] [PATCH 3/5] cmake.bbclass: append includedir to implicit include dirs

2019-07-10 Thread Douglas Royds via Openembedded-core
This commit is having an unintended side-effect in the -native (and probably nativesdk) case. In the target build, $includedir is normally /usr/include, fully-qualified. This path is already in CMake's list of implicit include directories, and we don't include any header files from the build

[OE-core] [PATCH 3/5] cmake.bbclass: append includedir to implicit include dirs

2018-11-29 Thread Mikko Rapeli
From: Michael Ho This resolves issues with paths being marked as system includes that differ from /usr/include but are considered implicit by the toolchain. This enables developers to add directories to system includes to supress compiler compiler warnings from them. Signed-off-by: Michael Ho C