All of lore.kernel.org
 help / color / mirror / Atom feed
From: Khem Raj <raj.khem@gmail.com>
To: Richard Purdie <richard.purdie@linuxfoundation.org>
Cc: Patches and discussions about the oe-core layer
	<openembedded-core@lists.openembedded.org>
Subject: Re: [PATCH V2 00/12] Add GCC 8 recipes
Date: Thu, 7 Jun 2018 06:58:19 -0700	[thread overview]
Message-ID: <CAMKF1spb1hneH+nyMAQWBOVo87A0CTnop5pWGTz-rRUgR2_AbQ@mail.gmail.com> (raw)
In-Reply-To: <8224f706c78b5e41ce6a3673d221a983ccbffe77.camel@linuxfoundation.org>

On Thu, Jun 7, 2018 at 3:42 AM, Richard Purdie
<richard.purdie@linuxfoundation.org> wrote:
> On Wed, 2018-06-06 at 20:45 -0400, Bruce Ashfield wrote:
>>
>>
>> On Wed, Jun 6, 2018 at 5:37 PM, Khem Raj <raj.khem@gmail.com> wrote:
>> > This changeset is including the review feedback from last patchset
>> >
>> > - Fixes ppc such that we dont have to change machine options so it
>> > remains backward compatible and folks can still use gcc7
>> > - Tweaks arm tunes to set -mtune instead of -mcpu, this avoids
>> > conflicts between -march/-mcpu
>> > - Removes workarounds to avoid these conflicts in valgrind
>> > - Add mips 74kc tune files
>> > - Linux yocto changes are also part of Bruce's kernel updates but
>> > this makes it complete until those changes are pulled in
>>
>> Correct. I have all of the gcc8 patches in linux-yocto 4.12/4.14/4.15
>> and linux-yocto-dev.
>>
>> They should have been covered by my last set of SRCREV updates, and I
>> noticed that
>> some are in, and some not.
>>
>> I'll resubmit my SRCREV queue tomorrow, and that will cover the gcc8
>> angle.
>
> Thanks. Khem's series failed since it doesn't cover 4.14, Bruce's
> patchset helped a lot.

yes I only fixed 4.15 since that was default kernel

>
> It looks like we have kernel failures with:
>
> MACHINE="mpc8315e-rdb" DISTRO="poky-lsb" in linux-yocto 4.14
> https://autobuilder.yocto.io/builders/nightly-ppc-lsb/builds/1051/steps/BuildImages_1/logs/stdio
>
> MACHINE="mpc8315e-rdb" DISTRO="poky" in linux-yocto 4.15
> https://autobuilder.yocto.io/builders/nightly-ppc/builds/1066/steps/BuildImages_1/logs/stdio
>
> MACHINE="edgerouter" DISTRO="poky-lsb" in linux-yocto 4.14:
> https://autobuilder.yocto.io/builders/nightly-mips-lsb/builds/1040/steps/BuildImages_1/logs/stdio
>
> MACHINE="edgerouter" DISTRO="poky" in linux-yocto 4.15:
> https://autobuilder.yocto.io/builders/nightly-mips/builds/1044/steps/BuildImages_1/logs/stdio
>
> I realised the above may be due to missing BSP SRCREV updates (cc Kevin)?
>
> With gcc 8, it seems we have a problem with meta-mingw:
>
> https://autobuilder.yocto.io/builders/nightly-qa-extras/builds/1062/steps/BuildImages_3/logs/stdio
>

yes I have patch for this sent to yp mailing list just now.

> The build isn't finished but I'm hoping these are the main remaining
> issues.
>
> Cheers,
>
> Richard
>
>
>
>
>
>
>
>


      parent reply	other threads:[~2018-06-07 13:58 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-06-06 21:37 [PATCH V2 00/12] Add GCC 8 recipes Khem Raj
2018-06-06 21:37 ` [PATCH 01/12] tune/arm: Set -mtune instead of -mcpu Khem Raj
2018-06-06 22:15   ` Andre McCurdy
2018-06-06 22:43     ` Khem Raj
2018-06-06 23:42       ` Andre McCurdy
2018-06-07  5:58         ` Khem Raj
2018-06-07  6:36           ` Martin Jansa
2018-06-07 16:55             ` Khem Raj
2018-06-07  7:14           ` Andre McCurdy
2018-06-07 14:04             ` Khem Raj
2018-06-07 23:38               ` Andre McCurdy
2018-06-08  0:57                 ` Khem Raj
2018-06-08  1:20                   ` Andre McCurdy
2018-06-08  1:48                     ` Khem Raj
2018-06-08  8:12                     ` Khem Raj
2018-06-06 21:37 ` [PATCH 02/12] valgrind: Remove code to remove -mcpu option on arm Khem Raj
2018-06-06 21:37 ` [PATCH 03/12] tune-mips-74k.inc: add tune file for 74kc mips Khem Raj
2018-06-06 21:37 ` [PATCH 04/12] gcc-8: Add recipes for 8.1 release Khem Raj
2018-06-06 21:37 ` [PATCH 05/12] gcc-8: Disable libssp for non mingw targets Khem Raj
2018-06-06 21:37 ` [PATCH 06/12] gcc-8: Disable float128 for ppc/musl Khem Raj
2018-06-06 21:37 ` [PATCH 07/12] gcc-8: Enabled mspe options for rs6000 ppc backend Khem Raj
2018-06-06 21:37 ` [PATCH 08/12] tcmode-default: Switch to gcc 8.0 Khem Raj
2018-06-06 21:37 ` [PATCH 09/12] linux-yocto: Fix build with gcc8 for ppc Khem Raj
2018-06-06 21:37 ` [PATCH 10/12] linux-yocto: Fix mips build with gcc8 Khem Raj
2018-06-06 21:37 ` [PATCH 11/12] linux-yocto: Fix mips64 " Khem Raj
2018-06-06 21:37 ` [PATCH 12/12] linux-yocto: Fix GCC 8 -Wrestrict error Khem Raj
2018-06-07  0:45 ` [PATCH V2 00/12] Add GCC 8 recipes Bruce Ashfield
2018-06-07 10:42   ` Richard Purdie
2018-06-07 12:08     ` Kevin Hao
2018-06-07 13:58     ` Khem Raj [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAMKF1spb1hneH+nyMAQWBOVo87A0CTnop5pWGTz-rRUgR2_AbQ@mail.gmail.com \
    --to=raj.khem@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=richard.purdie@linuxfoundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.