Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 0/6] Internal toolchain backend updates
@ 2015-06-14 14:33 Thomas Petazzoni
  2015-06-14 14:33 ` [Buildroot] [PATCH 1/6] uclibc: bump uClibc-ng to 1.0.3 Thomas Petazzoni
                   ` (5 more replies)
  0 siblings, 6 replies; 20+ messages in thread
From: Thomas Petazzoni @ 2015-06-14 14:33 UTC (permalink / raw)
  To: buildroot

Hello,

Here is a set of updates to the internal toolchain backend, bumping
uClibc-ng, adding support for gcc 5.1, bumping gdb 7.9 and
deprecating support for eglibc.

Also available at:

  git at git.free-electrons.com:users/thomas-petazzoni/buildroot

branch internal-toolchain-updates.

Best regards,

Thomas

Thomas Petazzoni (6):
  uclibc: bump uClibc-ng to 1.0.3
  uclibc: add libgcc_s_resume fix
  gcc: add support for gcc 5.1
  gcc: switch to gcc 4.9 as the default version
  gdb: bump 7.9 series to 7.9.1
  toolchain-buildroot: mark eglibc as deprecated

 package/gcc/5.1.0/100-uclibc-conf.patch            |  15 +
 .../5.1.0/200-gcc-poison-system-directories.patch  | 207 +++++++++++++
 .../5.1.0/201-libgcc-remove-unistd-header.patch    |  14 +
 package/gcc/5.1.0/301-missing-execinfo_h.patch     |  13 +
 package/gcc/5.1.0/810-arm-softfloat-libgcc.patch   |  30 ++
 package/gcc/5.1.0/830-arm_unbreak_armv4t.patch     |  15 +
 .../840-microblaze-enable-dwarf-eh-support.patch   | 166 +++++++++++
 package/gcc/5.1.0/850-libstdcxx-uclibc-c99.patch   | 273 ++++++++++++++++++
 package/gcc/5.1.0/860-cilk-wchar.patch             |  56 ++++
 .../5.1.0/900-libitm-fixes-for-musl-support.patch  |  65 +++++
 .../901-fixincludes-update-for-musl-support.patch  |  32 ++
 package/gcc/5.1.0/902-unwind-fix-for-musl.patch    |  36 +++
 ...dc++-libgfortran-gthr-workaround-for-musl.patch |  80 +++++
 package/gcc/5.1.0/904-musl-libc-config.patch       | 321 +++++++++++++++++++++
 .../gcc/5.1.0/905-add-musl-support-to-gcc.patch    | 130 +++++++++
 package/gcc/5.1.0/906-mips-musl-support.patch      |  37 +++
 package/gcc/5.1.0/907-x86-musl-support.patch       |  45 +++
 package/gcc/5.1.0/908-arm-musl-support.patch       |  45 +++
 package/gcc/5.1.0/909-aarch64-musl-support.patch   |  33 +++
 package/gcc/Config.in.host                         |  11 +-
 package/gcc/gcc.hash                               |   2 +
 .../0001-gdbserver-fix-uClibc-whithout-MMU.patch   |   0
 ...gdbserver-xtensa-drop-xtensa_usrregs_info.patch |   0
 ...erver-xtensa-fix-typo-in-XCHAL_HAVE_LOOPS.patch |   0
 package/gdb/Config.in.host                         |   2 +-
 package/gdb/gdb.hash                               |   2 +-
 .../0.9.33.2/0071-Fix-libgcc_s_resume-issue.patch  |  53 ++++
 .../0001-fix-static-linking-of-pthread-apps.patch  |  72 -----
 ...ert-Do-not-define-unimplemented-functions.patch | 118 --------
 .../1.0.3/0001-Fix-libgcc_s_resume-issue.patch     |  53 ++++
 package/uclibc/Config.in                           |   2 +-
 package/uclibc/uclibc.hash                         |   2 +-
 toolchain/toolchain-buildroot/Config.in            |   1 +
 33 files changed, 1735 insertions(+), 196 deletions(-)
 create mode 100644 package/gcc/5.1.0/100-uclibc-conf.patch
 create mode 100644 package/gcc/5.1.0/200-gcc-poison-system-directories.patch
 create mode 100644 package/gcc/5.1.0/201-libgcc-remove-unistd-header.patch
 create mode 100644 package/gcc/5.1.0/301-missing-execinfo_h.patch
 create mode 100644 package/gcc/5.1.0/810-arm-softfloat-libgcc.patch
 create mode 100644 package/gcc/5.1.0/830-arm_unbreak_armv4t.patch
 create mode 100644 package/gcc/5.1.0/840-microblaze-enable-dwarf-eh-support.patch
 create mode 100644 package/gcc/5.1.0/850-libstdcxx-uclibc-c99.patch
 create mode 100644 package/gcc/5.1.0/860-cilk-wchar.patch
 create mode 100644 package/gcc/5.1.0/900-libitm-fixes-for-musl-support.patch
 create mode 100644 package/gcc/5.1.0/901-fixincludes-update-for-musl-support.patch
 create mode 100644 package/gcc/5.1.0/902-unwind-fix-for-musl.patch
 create mode 100644 package/gcc/5.1.0/903-libstdc++-libgfortran-gthr-workaround-for-musl.patch
 create mode 100644 package/gcc/5.1.0/904-musl-libc-config.patch
 create mode 100644 package/gcc/5.1.0/905-add-musl-support-to-gcc.patch
 create mode 100644 package/gcc/5.1.0/906-mips-musl-support.patch
 create mode 100644 package/gcc/5.1.0/907-x86-musl-support.patch
 create mode 100644 package/gcc/5.1.0/908-arm-musl-support.patch
 create mode 100644 package/gcc/5.1.0/909-aarch64-musl-support.patch
 rename package/gdb/{7.9 => 7.9.1}/0001-gdbserver-fix-uClibc-whithout-MMU.patch (100%)
 rename package/gdb/{7.9 => 7.9.1}/0002-gdbserver-xtensa-drop-xtensa_usrregs_info.patch (100%)
 rename package/gdb/{7.9 => 7.9.1}/0003-gdbserver-xtensa-fix-typo-in-XCHAL_HAVE_LOOPS.patch (100%)
 create mode 100644 package/uclibc/0.9.33.2/0071-Fix-libgcc_s_resume-issue.patch
 delete mode 100644 package/uclibc/1.0.2/0001-fix-static-linking-of-pthread-apps.patch
 delete mode 100644 package/uclibc/1.0.2/0002-Revert-Do-not-define-unimplemented-functions.patch
 create mode 100644 package/uclibc/1.0.3/0001-Fix-libgcc_s_resume-issue.patch

-- 
2.1.0

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

end of thread, other threads:[~2015-06-22 22:28 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-14 14:33 [Buildroot] [PATCH 0/6] Internal toolchain backend updates Thomas Petazzoni
2015-06-14 14:33 ` [Buildroot] [PATCH 1/6] uclibc: bump uClibc-ng to 1.0.3 Thomas Petazzoni
2015-06-14 19:03   ` Waldemar Brodkorb
2015-06-14 20:40     ` Thomas Petazzoni
2015-06-22 22:17   ` Peter Korsgaard
2015-06-14 14:33 ` [Buildroot] [PATCH 2/6] uclibc: add libgcc_s_resume fix Thomas Petazzoni
2015-06-14 16:24   ` Baruch Siach
2015-06-14 20:33     ` Thomas Petazzoni
2015-06-22 22:28       ` Peter Korsgaard
2015-06-14 14:33 ` [Buildroot] [PATCH 3/6] gcc: add support for gcc 5.1 Thomas Petazzoni
2015-06-20 15:12   ` Bernd Kuhls
2015-06-20 15:38     ` Bernd Kuhls
2015-06-22 22:27       ` Peter Korsgaard
2015-06-22 22:18   ` Peter Korsgaard
2015-06-14 14:33 ` [Buildroot] [PATCH 4/6] gcc: switch to gcc 4.9 as the default version Thomas Petazzoni
2015-06-22 22:19   ` Peter Korsgaard
2015-06-14 14:33 ` [Buildroot] [PATCH 5/6] gdb: bump 7.9 series to 7.9.1 Thomas Petazzoni
2015-06-22 22:23   ` Peter Korsgaard
2015-06-14 14:33 ` [Buildroot] [PATCH 6/6] toolchain-buildroot: mark eglibc as deprecated Thomas Petazzoni
2015-06-22 22:24   ` Peter Korsgaard

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