Re: [OE-core] [PATCH v2 1/3] meson: fix native/host confusion in gobject-introspection

2021-03-29 Thread Khem Raj
On 3/29/21 2:25 AM, Ross Burton wrote: This is the universe telling you that one line native file should have been put in oe-core. :) yeah I dropped it from meta-gnom now Ross On Fri, 26 Mar 2021 at 18:49, Khem Raj wrote: I am seeing some failures

Re: [OE-core] [PATCH v2 1/3] meson: fix native/host confusion in gobject-introspection

2021-03-29 Thread Ross Burton
This is the universe telling you that one line native file should have been put in oe-core. :) Ross On Fri, 26 Mar 2021 at 18:49, Khem Raj wrote: > > I am seeing some failures > > https://errors.yoctoproject.org/Errors/Details/574541/ > > On Thu, Mar 25, 2021 at 12:08 PM Ross Burton wrote: > >

Re: [OE-core] [PATCH v2 1/3] meson: fix native/host confusion in gobject-introspection

2021-03-26 Thread Khem Raj
I am seeing some failures https://errors.yoctoproject.org/Errors/Details/574541/ On Thu, Mar 25, 2021 at 12:08 PM Ross Burton wrote: > > On Thu, 25 Mar 2021 at 18:15, Alexander Kanavin > wrote: > > I don't think I fully understand this. Is g-i in meson projects already > > broken for a while

Re: [OE-core] [PATCH v2 1/3] meson: fix native/host confusion in gobject-introspection

2021-03-25 Thread Ross Burton
On Thu, 25 Mar 2021 at 18:15, Alexander Kanavin wrote: > I don't think I fully understand this. Is g-i in meson projects already > broken for a while (there was a bit of refactor in the latest meson version, > which I tested, but perhaps not well enough), or is this necessary for the > other

Re: [OE-core] [PATCH v2 1/3] meson: fix native/host confusion in gobject-introspection

2021-03-25 Thread Alexander Kanavin
I don't think I fully understand this. Is g-i in meson projects already broken for a while (there was a bit of refactor in the latest meson version, which I tested, but perhaps not well enough), or is this necessary for the other patches in your set? Alex On Thu, 25 Mar 2021 at 18:39, Ross

[OE-core] [PATCH v2 1/3] meson: fix native/host confusion in gobject-introspection

2021-03-25 Thread Ross Burton
When building G-I we want to use *native* binaries (as they need to be executed) but the *cross* libraries, as otherwise when using the correct pkg-config binary in native lookups Meson will end up linking native and cross libraries together. Signed-off-by: Ross Burton ---