[OE-core] [PATCH] gdb: fix build with x32

2017-12-28 Thread Anuj Mittal
When compiling gdb for x32, it fails with errors: |../../../gdb-8.0/gdb/gdbserver/linux-amd64-ipa.c: In function 'const target_desc* get_ipa_tdesc(int)': |../../../gdb-8.0/gdb/gdbserver/linux-amd64-ipa.c:184:10: error: 'X86_TDESC_AVX512' was not declared in this scope | case X86_TDESC_AVX512

[OE-core] [PATCH] webkitgtk: fix build with musl and x32

2017-12-28 Thread Anuj Mittal
Make the x32 check generic to make it work with musl as well. Fixes [YOCTO #12118] Signed-off-by: Anuj Mittal --- meta/recipes-sato/webkit/webkitgtk_2.18.3.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/recipes-sato/webkit/webkitgtk_2.18.3.bb b/meta/recipes-sato/

Re: [OE-core] [oe] splitting python's standard library

2017-12-28 Thread Derek Straka
Let me know when this is ready to get merged into master-next. I have a patchset on my github for all the python recipes in meta-oe that need updating based on the deprecated python{3} packages. I can submit it to the ML at that point. Thanks. -Derek On Tue, Dec 19, 2017 at 9:02 AM, Derek Stra

Re: [OE-core] [PATCH] mesa: Upgrade to 17.3.1 release

2017-12-28 Thread Otavio Salvador
Hello Richard, On Thu, Dec 28, 2017 at 1:06 PM, Richard Purdie wrote: > On Fri, 2017-12-22 at 11:35 -0200, Otavio Salvador wrote: >> The 17.3.1 release, published in December 21, 2017, is the first 17.3 >> stable release for use. It fixes a number of issues since 17.3.0 >> release. >> >> The rele

Re: [OE-core] [PATCH] mesa: Upgrade to 17.3.1 release

2017-12-28 Thread Richard Purdie
On Fri, 2017-12-22 at 11:35 -0200, Otavio Salvador wrote: > The 17.3.1 release, published in December 21, 2017, is the first 17.3 > stable release for use. It fixes a number of issues since 17.3.0 > release. > > The release notes can be seen at: > >  - 17.3.0: https://www.mesa3d.org/relnotes/17.3

Re: [OE-core] [PATCH] fontcache : fix build warning when using quemu usermode

2017-12-28 Thread Jibin Xu
On 2017年12月28日 15:50, Martin Jansa wrote: > No,some MACHINEs not support qemu usermode That's not what I was asking. You're disabling whole build-time postinst when qemu-usermode is in MACHINE_FEATURES with: ${@bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'true','false', d)} and

Re: [OE-core] [PATCH] fontcache : fix build warning when using quemu usermode

2017-12-28 Thread Zhixiong Chi
On 2017年12月28日 15:50, Martin Jansa wrote: > No,some MACHINEs not support qemu usermode That's not what I was asking. You're disabling whole build-time postinst when qemu-usermode is in MACHINE_FEATURES with: ${@bb.utils.contains('MACHINE_FEATURES', 'qemu-usermode', 'true','false', d)} Hi,