All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/12] gcc dso linking change, and related fixes
@ 2011-01-17 22:45 Nitin A Kamble
  2011-01-17 22:45 ` [PATCH 01/12] gcc_4.5.1: add DSO linking change patch Nitin A Kamble
                   ` (12 more replies)
  0 siblings, 13 replies; 20+ messages in thread
From: Nitin A Kamble @ 2011-01-17 22:45 UTC (permalink / raw)
  To: poky

This commit set, changes the dso linking to avoid automatic linking of 
shared libraries. This caused, as expected, linking of few recipes to fail.
All these recipes are fixed by specifying the linked libraries explicitely.

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: nitin/dso_linking_change
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/dso_linking_change

Thanks,
    Nitin A Kamble <nitin.a.kamble@intel.com>
---


Nitin A Kamble (12):
  gcc_4.5.1: add DSO linking change patch
  sat-solver: fix the build failure caused by gcc dso linkcing change
  libmusicbrainz: fix the build failure caused by gcc dso linkcing
    change
  oprofileui: fix the build failure after gcc dso change
  settings-daemon: fix build error with new gcc dso linking change
  matchbox-desktop: fix build issue with gcc dso linking change
  xtscal: fix build issue with gcc dso linking change
  blktrace: fix build issue with gcc dso linking change
  fstests: fix build issue with gcc dso linking change
  dates: fix build issue with gcc dso linking change
  matchbox-stroke: : fix build issue with gcc dso linking change
  screenshot: fix build issue with gcc dso linking change

 meta/recipes-devtools/gcc/gcc-4.5.1.inc            |    1 +
 .../gcc/gcc-4.5.1/fedora/gcc45-no-add-needed.patch |   52 ++++++++++++++
 .../gcc/gcc-cross-canadian_4.5.1.bb                |    2 +-
 .../gcc/gcc-cross-initial_4.5.1.bb                 |    2 +-
 .../gcc/gcc-cross-intermediate_4.5.1.bb            |    2 +-
 meta/recipes-devtools/gcc/gcc-cross_4.5.1.bb       |    2 +-
 .../gcc/gcc-crosssdk-initial_4.5.1.bb              |    2 +-
 .../gcc/gcc-crosssdk-intermediate_4.5.1.bb         |    2 +-
 meta/recipes-devtools/gcc/gcc-crosssdk_4.5.1.bb    |    2 +-
 meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb     |    2 +-
 meta/recipes-devtools/gcc/gcc_4.5.1.bb             |    2 +-
 .../sat-solver/dso_linking_change_build_fix.patch  |   31 +++++++++
 meta/recipes-extended/sat-solver/sat-solver_git.bb |    5 +-
 .../files/dso_linking_change_build_fix.patch       |   72 ++++++++++++++++++++
 meta/recipes-graphics/fstests/fstests_svn.bb       |    5 +-
 .../xtscal/dso_linking_change_build_fix.patch      |   25 +++++++
 meta/recipes-graphics/xtscal/xtscal_0.6.3.bb       |    3 +-
 .../blktrace/dso_linking_change_build_fix.patch    |   26 +++++++
 meta/recipes-kernel/blktrace/blktrace_git.bb       |    5 +-
 meta/recipes-kernel/oprofile/oprofileui-svn.inc    |    5 +-
 .../oprofileui/dso_linking_change_build_fix.patch  |   25 +++++++
 .../dso_linking_change_build_fix.patch             |   29 ++++++++
 .../musicbrainz/libmusicbrainz_3.0.3.bb            |    5 +-
 .../files/dso_linking_change_build_fix.patch       |   26 +++++++
 .../matchbox-desktop/matchbox-desktop_2.0.bb       |    5 +-
 .../matchbox-desktop/matchbox-desktop_svn.bb       |    5 +-
 .../files/dso_linking_change_build_fix.patch       |   36 ++++++++++
 .../matchbox-stroke/matchbox-stroke_svn.bb         |    4 +-
 .../dates/dso_linking_change_build_fix.patch       |   36 ++++++++++
 meta/recipes-sato/pimlico/dates_git.bb             |    5 +-
 .../files/dso_linking_change_build_fix.patch       |   41 +++++++++++
 meta/recipes-sato/screenshot/screenshot_svn.bb     |    4 +-
 .../files/dso_linking_change_build_fix.patch       |   29 ++++++++
 .../settings-daemon/settings-daemon_svn.bb         |    5 +-
 34 files changed, 473 insertions(+), 30 deletions(-)
 create mode 100644 meta/recipes-devtools/gcc/gcc-4.5.1/fedora/gcc45-no-add-needed.patch
 create mode 100644 meta/recipes-extended/sat-solver/sat-solver/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-graphics/fstests/files/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-graphics/xtscal/xtscal/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-kernel/blktrace/blktrace/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-kernel/oprofile/oprofileui/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-multimedia/musicbrainz/libmusicbrainz-3.0.3/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-sato/matchbox-desktop/files/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-sato/matchbox-stroke/files/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-sato/pimlico/dates/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-sato/screenshot/files/dso_linking_change_build_fix.patch
 create mode 100644 meta/recipes-sato/settings-daemon/files/dso_linking_change_build_fix.patch

-- 
1.7.3.4



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

end of thread, other threads:[~2011-01-21 16:39 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-17 22:45 [PATCH 00/12] gcc dso linking change, and related fixes Nitin A Kamble
2011-01-17 22:45 ` [PATCH 01/12] gcc_4.5.1: add DSO linking change patch Nitin A Kamble
2011-01-17 22:45 ` [PATCH 03/12] libmusicbrainz: fix the build failure caused by gcc dso linkcing change Nitin A Kamble
2011-01-17 22:45 ` [PATCH 04/12] oprofileui: fix the build failure after gcc dso change Nitin A Kamble
2011-01-17 22:45 ` [PATCH 07/12] xtscal: fix build issue with gcc dso linking change Nitin A Kamble
2011-01-17 22:45 ` [PATCH 05/12] settings-daemon: fix build error with new " Nitin A Kamble
2011-01-17 22:45 ` [PATCH 06/12] matchbox-desktop: fix build issue with " Nitin A Kamble
2011-01-17 22:45 ` [PATCH 02/12] sat-solver: fix the build failure caused by gcc dso linkcing change Nitin A Kamble
2011-01-17 22:45 ` [PATCH 10/12] dates: fix build issue with gcc dso linking change Nitin A Kamble
2011-01-18  3:39   ` Mark Hatle
2011-01-18  4:14     ` Kamble, Nitin A
2011-01-17 22:45 ` [PATCH 11/12] matchbox-stroke: : " Nitin A Kamble
2011-01-17 22:45 ` [PATCH 12/12] screenshot: " Nitin A Kamble
2011-01-18  3:40   ` Mark Hatle
2011-01-18  4:16     ` Kamble, Nitin A
2011-01-19  0:38     ` Kamble, Nitin A
2011-01-17 22:45 ` [PATCH 08/12] blktrace: " Nitin A Kamble
2011-01-17 22:45 ` [PATCH 09/12] fstests: " Nitin A Kamble
2011-01-21  0:13 ` [PATCH 00/12] gcc dso linking change, and related fixes Richard Purdie
2011-01-21 16:39   ` Kamble, Nitin A

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.