Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 00/10] World build fixes with gcc-5
@ 2015-04-22  7:49 Khem Raj
  2015-04-22  7:49 ` [PATCH 01/10] connman: Fix builds to compile on musl Khem Raj
                   ` (9 more replies)
  0 siblings, 10 replies; 13+ messages in thread
From: Khem Raj @ 2015-04-22  7:49 UTC (permalink / raw)
  To: openembedded-core

This patchset contains fixes needed for building world using
gcc-5, gcc-5 recipes are still in contrib tree. First lets fix
the recipes

connman fix and packagegroup fix is needed for making sure that
these packagegroups are marked glibc specific or independent using
overrides, helps in paving way for doing world builds for non
glibc based systems


The following changes since commit 166f2587468ae71988c610858aad3f7ef67eccba:

  bison: don't depend on help2man (2015-04-21 11:29:30 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib kraj/for-master
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kraj/for-master

Khem Raj (10):
  connman: Fix builds to compile on musl
  glibc, packagegroup-self-hosted, packagegroup-core-lsb: Consider
    non-glibc libcs
  insserv: Fix build with gcc5 and clang
  xserver-xorg: Fix build with gcc-5
  u-boot-mkimage: Backport fix from upstream to fix build with gcc-5
  mdadm: Fix inline semantics
  lttng-tools: Add extern qualifier to declarations in .h file
  subversion: Add -P to CPPFLAGS
  gnome-icon-theme: Needs nls.m4
  gtk+: Correct function prototype

 meta/recipes-bsp/u-boot/u-boot-mkimage/gcc5.patch  |  91 +++++
 meta/recipes-bsp/u-boot/u-boot-mkimage_2015.01.bb  |   4 +-
 ...cktrace-API-only-when-compiling-for-glibc.patch |  41 ++
 .../connman/connman/0002-musl-header-fixes.patch   | 235 +++++++++++
 ...resolve-musl-does-not-implement-res_ninit.patch |  77 ++++
 ...Fix-duplicate-definitions-issue-with-musl.patch |  43 ++
 meta/recipes-connectivity/connman/connman_1.28.bb  |   4 +
 meta/recipes-core/glibc/glibc_2.21.bb              |   8 +-
 .../packagegroups/packagegroup-self-hosted.bb      |   7 +-
 .../161_bts777914_fix_undeclared_identifier.patch  |  36 ++
 meta/recipes-devtools/insserv/insserv_1.14.0.bb    |   1 +
 .../subversion/subversion_1.8.11.bb                |   3 +-
 meta/recipes-extended/mdadm/files/inline.patch     |  39 ++
 meta/recipes-extended/mdadm/mdadm_3.3.2.bb         |   1 +
 .../packagegroups/packagegroup-core-lsb.bb         |   9 +
 .../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb |   2 +-
 .../gtk+/gtk+/strict-prototypes.patch              |  24 ++
 meta/recipes-gnome/gtk+/gtk+_2.24.27.bb            |   1 +
 ...sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch |  50 +++
 .../xorg-xserver/xserver-xorg_1.16.3.bb            |   1 +
 .../lttng/lttng-tools/extern-decls.patch           | 442 +++++++++++++++++++++
 meta/recipes-kernel/lttng/lttng-tools_2.6.0.bb     |   1 +
 22 files changed, 1109 insertions(+), 11 deletions(-)
 create mode 100644 meta/recipes-bsp/u-boot/u-boot-mkimage/gcc5.patch
 create mode 100644 meta/recipes-connectivity/connman/connman/0001-Enable-backtrace-API-only-when-compiling-for-glibc.patch
 create mode 100644 meta/recipes-connectivity/connman/connman/0002-musl-header-fixes.patch
 create mode 100644 meta/recipes-connectivity/connman/connman/0003-resolve-musl-does-not-implement-res_ninit.patch
 create mode 100644 meta/recipes-connectivity/connman/connman/0004-tethering-Fix-duplicate-definitions-issue-with-musl.patch
 create mode 100644 meta/recipes-devtools/insserv/files/161_bts777914_fix_undeclared_identifier.patch
 create mode 100644 meta/recipes-extended/mdadm/files/inline.patch
 create mode 100644 meta/recipes-gnome/gtk+/gtk+/strict-prototypes.patch
 create mode 100644 meta/recipes-graphics/xorg-xserver/xserver-xorg/0001-sdksyms.sh-Make-sdksyms.sh-work-with-gcc5.patch
 create mode 100644 meta/recipes-kernel/lttng/lttng-tools/extern-decls.patch

-- 
2.1.4



^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2015-04-22 16:11 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-22  7:49 [PATCH 00/10] World build fixes with gcc-5 Khem Raj
2015-04-22  7:49 ` [PATCH 01/10] connman: Fix builds to compile on musl Khem Raj
2015-04-22 10:27   ` Jukka Rissanen
2015-04-22 16:11     ` Khem Raj
2015-04-22  7:49 ` [PATCH 02/10] glibc, packagegroup-self-hosted, packagegroup-core-lsb: Consider non-glibc libcs Khem Raj
2015-04-22  7:49 ` [PATCH 03/10] insserv: Fix build with gcc5 and clang Khem Raj
2015-04-22  7:49 ` [PATCH 04/10] xserver-xorg: Fix build with gcc-5 Khem Raj
2015-04-22  7:49 ` [PATCH 05/10] u-boot-mkimage: Backport fix from upstream to fix " Khem Raj
2015-04-22  7:49 ` [PATCH 06/10] mdadm: Fix inline semantics Khem Raj
2015-04-22  7:49 ` [PATCH 07/10] lttng-tools: Add extern qualifier to declarations in .h file Khem Raj
2015-04-22  7:49 ` [PATCH 08/10] subversion: Add -P to CPPFLAGS Khem Raj
2015-04-22  7:49 ` [PATCH 09/10] gnome-icon-theme: Needs nls.m4 Khem Raj
2015-04-22  7:49 ` [PATCH 10/10] gtk+: Correct function prototype Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox