All of lore.kernel.org
 help / color / mirror / Atom feed
From: akuster808 <akuster808@gmail.com>
To: Tim Orling <timothy.t.orling@linux.intel.com>,
	openembedded-core@lists.openembedded.org
Subject: Re: [krogoth][PATCH 0/8] Fixes for gcc-6 (Fedora-24)
Date: Fri, 15 Jul 2016 07:16:25 -0700	[thread overview]
Message-ID: <5788F039.60603@gmail.com> (raw)
In-Reply-To: <cover.1468546499.git.timothy.t.orling@linux.intel.com>



On 07/14/2016 06:49 PM, Tim Orling wrote:
> [YOCTO #9897]
> 
> Fedora-24 only has gcc-6.1.1.

thanks,

pulled into staging.

- armin
> 
> This has caused a number of failures in -native recipes and gcc-cross.
> 
> This series either cherry-picks commits from master or applies known good patches from upstream.
> 
> Fixes broken build for:
>  - pkgconfig-native
>  - elfutils-native
>  - rpm-native
>  - binutils-native
>  - glib-2.0-native
>  - docbook-utils-native (actually openjade-native was the culprit)
>  - gcc-cross (gcc-cross-arm build tested for beaglebone)
> 
> Other problems may be lurking and only a world build on Fedora-24 AB will tell for sure.
> 
> Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
> 
> 
> The following changes since commit 98c57bb512ea6790db8604fcf0b88c81651d2ab4:
> 
>   build-appliance-image: Update to krogoth head revision (2016-07-06 17:28:04 +0100)
> 
> are available in the git repository at:
> 
>   git://git.yoctoproject.org/poky-contrib timo/krogoth-9897
>   http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=timo/krogoth-9897
> 
> Dan McGregor (1):
>   binutils: disable werror on native build
> 
> Daniel McGregor (1):
>   openjade-native: work around bug exposed by GCC 6
> 
> Khem Raj (3):
>   elfutils-0.148: Fix build with gcc6
>   rpm: Fix build with gcc6
>   glib-2.0: Ignore useless warning found with gcc-6
> 
> Tim Orling (3):
>   pkgconfig: Fix build with gcc-6
>   elfutils: Fix build for gcc-6
>   gcc-5.3: fix build for gcc-6
> 
>  .../0001-Do-not-ignore-return-value-of-write.patch |  42 +++
>  .../glib-2.0/0002-tests-Ignore-y2k-warnings.patch  |  42 +++
>  .../ignore-format-nonliteral-warning.patch         |  39 ++
>  meta/recipes-core/glib-2.0/glib-2.0_2.46.2.bb      |   7 +-
>  meta/recipes-devtools/binutils/binutils_2.26.bb    |   3 +-
>  .../elfutils/elfutils-0.148/gcc6.patch             |  23 ++
>  ...missing-brackets-around-if-statement-body.patch | 419 +++++++++++++++++++++
>  meta/recipes-devtools/elfutils/elfutils_0.148.bb   |   1 +
>  meta/recipes-devtools/elfutils/elfutils_0.164.bb   |   1 +
>  meta/recipes-devtools/gcc/gcc-5.3.inc              |   1 +
>  .../gcc-5.3/0060-fix-build-when-using-gcc6.patch   | 157 ++++++++
>  .../openjade/openjade-native_1.3.2.bb              |   1 +
>  ...te-suppress-string-format-literal-warning.patch |  34 ++
>  meta/recipes-devtools/pkgconfig/pkgconfig_git.bb   |   1 +
>  meta/recipes-devtools/rpm/rpm/gcc6-stdlib.patch    |  54 +++
>  meta/recipes-devtools/rpm/rpm_5.4.16.bb            |   3 +-
>  16 files changed, 824 insertions(+), 4 deletions(-)
>  create mode 100644 meta/recipes-core/glib-2.0/glib-2.0/0001-Do-not-ignore-return-value-of-write.patch
>  create mode 100644 meta/recipes-core/glib-2.0/glib-2.0/0002-tests-Ignore-y2k-warnings.patch
>  create mode 100644 meta/recipes-core/glib-2.0/glib-2.0/ignore-format-nonliteral-warning.patch
>  create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.148/gcc6.patch
>  create mode 100644 meta/recipes-devtools/elfutils/elfutils-0.164/libebl-Fix-missing-brackets-around-if-statement-body.patch
>  create mode 100644 meta/recipes-devtools/gcc/gcc-5.3/0060-fix-build-when-using-gcc6.patch
>  create mode 100644 meta/recipes-devtools/pkgconfig/pkgconfig/0001-gdate-suppress-string-format-literal-warning.patch
>  create mode 100644 meta/recipes-devtools/rpm/rpm/gcc6-stdlib.patch
> 


      parent reply	other threads:[~2016-07-15 14:16 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-15  1:49 [krogoth][PATCH 0/8] Fixes for gcc-6 (Fedora-24) Tim Orling
2016-07-15  1:49 ` [krogoth][PATCH 1/8] pkgconfig: Fix build with gcc-6 Tim Orling
2016-07-15 13:53   ` akuster808
2016-07-15 14:08     ` Burton, Ross
2016-07-15 14:27       ` akuster808
2016-07-15 17:32         ` Tim Orling
2016-07-15  1:49 ` [krogoth][PATCH 2/8] elfutils-0.148: Fix build with gcc6 Tim Orling
2016-07-15  1:49 ` [krogoth][PATCH 3/8] elfutils: Fix build for gcc-6 Tim Orling
2016-07-15  1:49 ` [krogoth][PATCH 4/8] rpm: Fix build with gcc6 Tim Orling
2016-07-15  1:49 ` [krogoth][PATCH 5/8] glib-2.0: Ignore useless warning found with gcc-6 Tim Orling
2016-07-15  1:49 ` [krogoth][PATCH 6/8] binutils: disable werror on native build Tim Orling
2016-07-15  3:26   ` Khem Raj
2016-07-15  3:58     ` Tim Orling
2016-07-15  4:52       ` Khem Raj
2016-07-15  1:49 ` [krogoth][PATCH 7/8] openjade-native: work around bug exposed by GCC 6 Tim Orling
2016-07-15  1:49 ` [krogoth][PATCH 8/8] gcc-5.3: fix build for gcc-6 Tim Orling
2016-07-15 14:16 ` akuster808 [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=5788F039.60603@gmail.com \
    --to=akuster808@gmail.com \
    --cc=openembedded-core@lists.openembedded.org \
    --cc=timothy.t.orling@linux.intel.com \
    /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.