Re: [OE-core] [oe] [meta-java][PATCH] openjdk-8-common: Fix the issue of building failed adlc on host with gcc < 6

2017-10-03 Thread Andrew Goodbody
> -Original Message- > From: Fupan Li > > The patch recipes-core/openjdk/patches-openjdk-8/openjdk8-fix-adlc- > flags.patch > had tried to fix this issue, and it tried to filter out the > TARGET_FLAGS/TARGET_ > CXXFLGAS, but for the flags such as

Re: [OE-core] Change to kernel.bbclass broke kernel build when gcc does not support -ffile-prefix-map

2017-08-23 Thread Andrew Goodbody
> From: Bystricky, Juro [mailto:juro.bystri...@intel.com] > > Yes, the issue was reported by others as well, it should be fixed by this > patch: > > https://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/?h=master- > next=2b7646a113cca7698d8484fe14bdbb8683a5f8ab > &

[OE-core] Change to kernel.bbclass broke kernel build when gcc does not support -ffile-prefix-map

2017-08-22 Thread Andrew Goodbody
My build uses a version of gcc that does not support -ffile-prefix-map and this is now broken after I updated the tree to include the latest commit to kernel.bbclass "improve reproducibility" 012a70da7ae0617 by Juro Bystricky. The patch introduces the line cc_option_supported=`${KERNEL_CC} -Q

Re: [OE-core] rootfs build failure

2017-01-30 Thread Andrew Goodbody
Anyone know what the deal is here? Andrew > -Original Message- > I now get the following build failure from do_rootfs > > The stack trace of python calls that resulted in this exception/failure was: > File: 'exec_python_func() autogenerated', lineno: 2, function: > 0001: > ***

Re: [OE-core] configure error for glibc 2.25.2

2017-01-25 Thread Andrew Goodbody
> From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > On Wed, 2017-01-25 at 09:56 +, Andrew Goodbody wrote: > > > > > > From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > > > On Tue, 2017-01-24 at 18:08 +, Andrew Goodb

[OE-core] rootfs build failure

2017-01-25 Thread Andrew Goodbody
I now get the following build failure from do_rootfs The stack trace of python calls that resulted in this exception/failure was: File: 'exec_python_func() autogenerated', lineno: 2, function: 0001: *** 0002:license_create_manifest(d) 0003: File:

Re: [OE-core] configure error for glibc 2.25.2

2017-01-25 Thread Andrew Goodbody
> From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > On Tue, 2017-01-24 at 18:08 +, Andrew Goodbody wrote: > > > > > > From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > > > I'm running out of time to write this up and post pro

Re: [OE-core] configure error for glibc 2.25.2

2017-01-25 Thread Andrew Goodbody
> From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > Sorry, yes, you're totally right. I hadn't remembered there were two > places we were making this assumption! That does look like the right > fix although I might rework that code slightly. Feel free. I'm off to fix all the

Re: [OE-core] configure error for glibc 2.25.2

2017-01-24 Thread Andrew Goodbody
Further to this I see the following message in log.do_prepare_recipe_sysroot.20511 WARNING: Manifest /home/andrew/src/camol3/camol/build/tmp-camol-glibc/sstate-control/manifest-allarch-linux-libc-headers.populate_sysroot not found? Which is quite correct as that file does not exist, however

Re: [OE-core] configure error for glibc 2.25.2

2017-01-24 Thread Andrew Goodbody
> From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > On Tue, 2017-01-24 at 15:59 +, Andrew Goodbody wrote: > > Further to this I see the following message in > > log.do_prepare_recipe_sysroot.20511 > > > > WARNING: Manifest /home/andrew/sr

Re: [OE-core] configure error for glibc 2.25.2

2017-01-24 Thread Andrew Goodbody
> From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > On Tue, 2017-01-24 at 17:14 +, Andrew Goodbody wrote: > > > > > > From: Richard Purdie [mailto:richard.pur...@linuxfoundation.org] > > > On Tue, 2017-01-24 at 15:59 +, Andrew Goodbo

[OE-core] configure error for glibc 2.25.2

2017-01-24 Thread Andrew Goodbody
I get the following configure error when trying to rebuild my tree today after doing a sync. Is this a core issue or something wrong in my tree? Thanks, Andrew | checking installed Linux kernel header files... missing or too old! | configure: error: GNU libc requires kernel header files from |

Re: [OE-core] Build of u-boot with gold is broken

2016-08-31 Thread Andrew Goodbody
> From: Manjukumar Harthikote Matha [mailto:manjukumar.harthikote- > ma...@xilinx.com] > > Can we do ${S}/config.mk ? Meaning > sed -i 's/$(CROSS_COMPILE)ld$/$(CROSS_COMPILE)ld.bfd/g' ${S}/config.mk I > dont have a setup for gold linker, If you can send the instructions I will > give it > a try

[OE-core] [PATCH] Fix out of tree builds of u-boot with gold linker

2016-08-31 Thread Andrew Goodbody
Need to reference config.mk file in source tree which is no longer the current directory when using out of tree builds. Signed-off-by: Andrew Goodbody <andrew.goodb...@cambrionix.com> --- meta/recipes-bsp/u-boot/u-boot.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [OE-core] Build of u-boot with gold is broken

2016-08-30 Thread Andrew Goodbody
From: Burton, Ross <ross.bur...@intel.com> On 19 August 2016 at 10:33, Andrew Goodbody <andrew.goodb...@cambrionix.com<mailto:andrew.goodb...@cambrionix.com>> wrote: The sed at line 70 fails as it is being executed in an empty build directory and so there is no config.m

[OE-core] Build of u-boot with gold is broken

2016-08-19 Thread Andrew Goodbody
Hi, It looks like the recent change to meta/recipes-bsp/u-boot/u-boot.inc to enable out of tree builds for u-boot does not work with gold. The sed at line 70 fails as it is being executed in an empty build directory and so there is no config.mk. Andrew --