All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] Rework cross toolchain bootstrap
@ 2012-08-21  3:07 Khem Raj
  2012-08-21  3:07 ` [PATCH 1/9] eglibc-2.16: Remove build dependency on libgcc_s and libgcc_eh Khem Raj
                   ` (9 more replies)
  0 siblings, 10 replies; 21+ messages in thread
From: Khem Raj @ 2012-08-21  3:07 UTC (permalink / raw)
  To: openembedded-core

This patchset drops one gcc bootstrap phase. It has been possible because of
some work upstream glibc to drop build time dependency on libgcc_s and libgcc_eh

I have built all possible images in OE-Core for all qemu machines
all of them built fine except *-rt and *-initramfs which failed due to unrelated
issues. I have built from scratch as well as built from sstate. Seems to go
ok. 


The following changes since commit 04568d1f18250d531aad5d286157d2d559083520:

  qemu: Fix broken accidental path move (2012-08-20 17:25:21 +0100)

are available in the git repository at:

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

Khem Raj (9):
  eglibc-2.16: Remove build dependency on libgcc_s and libgcc_eh
  eglibc-2.16: Update to top of 2.16 branch
  gcc-cross: Make gcc-cross-initial as the only intermediate gcc stage
  eglibc: Fix eglibc-initial and let eglibc depend on it
  uclibc.inc,uclibc-config.inc: Untabify python snippets
  uclibc: Use gcc-cross-initial as staging compiler
  gcc-crosssdk-initial_4.7.bb: Add --with-native-system-header-dir to
    EXTRA_OECONF
  gcc-cross-intermediate, gcc-crosssdk-intermediate: Remove
  gcc: Switch SRC_URI to use svn

 .../0001-Add-ARM-specific-static-stubs.c.patch     |   27 ++
 ...f-libgcc_s-and-libgcc_eh-when-building-gl.patch |  343 ++++++++++++++++++++
 meta/recipes-core/eglibc/eglibc-initial.inc        |   16 +-
 meta/recipes-core/eglibc/eglibc-testing.inc        |    2 +-
 meta/recipes-core/eglibc/eglibc.inc                |   11 +-
 meta/recipes-core/eglibc/eglibc_2.16.bb            |    6 +-
 meta/recipes-core/uclibc/uclibc-config.inc         |  128 ++++----
 meta/recipes-core/uclibc/uclibc-initial_0.9.33.bb  |   10 +-
 meta/recipes-core/uclibc/uclibc-initial_git.bb     |   10 +-
 meta/recipes-core/uclibc/uclibc.inc                |   28 +-
 meta/recipes-core/uclibc/uclibc_0.9.33.bb          |    7 +-
 meta/recipes-core/uclibc/uclibc_git.bb             |    7 +-
 meta/recipes-devtools/gcc/gcc-4.7.inc              |   11 +-
 .../gcc/gcc-4.7/arm-nolibfloat.patch               |   40 ---
 meta/recipes-devtools/gcc/gcc-cross-initial.inc    |   50 ++-
 .../gcc/gcc-cross-intermediate.inc                 |   68 ----
 .../gcc/gcc-cross-intermediate_4.7.bb              |    3 -
 .../gcc/gcc-crosssdk-initial_4.7.bb                |    2 +
 .../gcc/gcc-crosssdk-intermediate.inc              |    9 -
 .../gcc/gcc-crosssdk-intermediate_4.7.bb           |    3 -
 20 files changed, 534 insertions(+), 247 deletions(-)
 create mode 100644 meta/recipes-core/eglibc/eglibc-2.16/0001-Add-ARM-specific-static-stubs.c.patch
 create mode 100644 meta/recipes-core/eglibc/eglibc-2.16/0001-Avoid-use-of-libgcc_s-and-libgcc_eh-when-building-gl.patch
 delete mode 100644 meta/recipes-devtools/gcc/gcc-4.7/arm-nolibfloat.patch
 delete mode 100644 meta/recipes-devtools/gcc/gcc-cross-intermediate.inc
 delete mode 100644 meta/recipes-devtools/gcc/gcc-cross-intermediate_4.7.bb
 delete mode 100644 meta/recipes-devtools/gcc/gcc-crosssdk-intermediate.inc
 delete mode 100644 meta/recipes-devtools/gcc/gcc-crosssdk-intermediate_4.7.bb

-- 
1.7.9.5




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

end of thread, other threads:[~2012-10-09 18:25 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-21  3:07 [PATCH 0/9] Rework cross toolchain bootstrap Khem Raj
2012-08-21  3:07 ` [PATCH 1/9] eglibc-2.16: Remove build dependency on libgcc_s and libgcc_eh Khem Raj
2012-08-21  3:07 ` [PATCH 2/9] eglibc-2.16: Update to top of 2.16 branch Khem Raj
2012-08-21  3:07 ` [PATCH 3/9] gcc-cross: Make gcc-cross-initial as the only intermediate gcc stage Khem Raj
2012-08-24 21:08   ` Elvis Dowson
2012-08-24 21:10     ` Khem Raj
2012-08-24 21:20       ` Elvis Dowson
2012-08-24 21:59         ` Khem Raj
2012-10-06  6:59           ` Elvis Dowson
2012-10-06 15:41             ` Khem Raj
2012-10-06 16:11               ` Elvis Dowson
2012-10-09 13:48               ` Elvis Dowson
2012-10-09 17:37                 ` Elvis Dowson
2012-10-09 18:12                   ` Khem Raj
2012-08-21  3:07 ` [PATCH 4/9] eglibc: Fix eglibc-initial and let eglibc depend on it Khem Raj
2012-08-21  3:07 ` [PATCH 5/9] uclibc.inc, uclibc-config.inc: Untabify python snippets Khem Raj
2012-08-21  3:07 ` [PATCH 6/9] uclibc: Use gcc-cross-initial as staging compiler Khem Raj
2012-08-21  3:07 ` [PATCH 7/9] gcc-crosssdk-initial_4.7.bb: Add --with-native-system-header-dir to EXTRA_OECONF Khem Raj
2012-08-21  3:07 ` [PATCH 8/9] gcc-cross-intermediate, gcc-crosssdk-intermediate: Remove Khem Raj
2012-08-21  3:07 ` [PATCH 9/9] gcc: Switch SRC_URI to use svn Khem Raj
2012-08-21 15:51 ` [PATCH 0/9] Rework cross toolchain bootstrap Saul Wold

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.