From: Romain Naour <romain.naour@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2 00/11] glibc: bump to 2.26
Date: Sat, 2 Sep 2017 22:54:12 +0200 [thread overview]
Message-ID: <20170902205423.21288-1-romain.naour@gmail.com> (raw)
This series bump glibc to the latest release and allow to remove all
local patches! Sadly this new release come with some C++ regressions
or changes needed in packages.
While testing this new version, some build issues has been dicovered.
Two gcc patch are needed to build a toolchain with older compiler
(gcc 4.9 to 6.4), gcc 7.2 contain already the fix.
Another C++ namespace change trigger a build issue when the code
contain a workaround for math functions:
mesa3d:
"using std::fpclassify;"
https://github.com/mesa3d/mesa/blob/master/include/c99_math.h#L197
jsoncpp:
"#define isfinite std::isfinite"
It's not easy to catch all packages affected by this issue before
bumping glibc. So here is the v2 for testing and review containing
additional fixes.
This series is rebased on master after 2017.08 release.
Best regards,
Romain
Romain Naour (11):
package/gcc: fix build issue with glibc 2.26
package/gcc: fix build issue with glibc 2.26
package/mesa3d: fix build issue with glibc >= 2.26
package/jsoncpp: fix build with glibc >= 2.26
package/glibc: needs kernel headers >= 3.10 on powerpc64le
package/gcc: enable float128 on powerpc64le with glibc >= 2.26
toolchains
package/flex: disable reallocarray
package/diffutils: fix build with glibc 2.26
package/kodi: fix build with glibc 2.26
package/glibc: bump to 2.26
package/glibc: backport fixes for glibc bug 21930
package/diffutils/diffutils.mk | 6 +
package/flex/flex.mk | 3 +-
...t_t-not-struct-ucontext-in-linux-unwind.h.patch | 190 ++++++++++++
package/gcc/4.9.4/944-sanitizer-linux.patch | 88 ++++++
...t_t-not-struct-ucontext-in-linux-unwind.h.patch | 192 +++++++++++++
package/gcc/5.4.0/944-sanitizer-linux.patch | 87 ++++++
...t_t-not-struct-ucontext-in-linux-unwind.h.patch | 191 +++++++++++++
package/gcc/6.4.0/943-sanitizer-linux.patch | 87 ++++++
package/gcc/Config.in.host | 4 +
package/gcc/gcc.mk | 8 +
...__builtin_types_compatible_p-in-C-mode-bu.patch | 50 ++++
.../glibc/0001-sh-Fix-building-with-gcc5-6.patch | 56 ----
...00366-Ignore-LD_LIBRARY_PATH-for-AT_SECUR.patch | 35 ---
...02-Do-not-use-generic-selection-in-C-mode.patch | 56 ++++
...-version-of-issignaling-that-does-not-use.patch | 225 +++++++++++++++
...ject-overly-long-LD_PRELOAD-path-elements.patch | 122 --------
...ersion-of-issignaling-when-__NO_LONG_DOUB.patch | 47 +++
...Reject-overly-long-LD_AUDIT-path-elements.patch | 204 -------------
...-version-of-iszero-that-does-not-use-__MA.patch | 210 ++++++++++++++
package/glibc/0005-fix-binutils-2-29-build.patch | 65 -----
...g-IS_IN-libc-guards-to-vectorized-strcspn.patch | 47 ---
package/glibc/0006-sh4-trap.patch | 318 ---------------------
package/glibc/glibc.hash | 2 +-
package/glibc/glibc.mk | 2 +-
...001-json_writer-fix-build-with-glibc-2.26.patch | 28 ++
...3-dialogs-fix-build-issue-with-glibc-2.26.patch | 37 +++
...-c99_math-fix-build-issue-with-glibc-2.26.patch | 82 ++++++
toolchain/toolchain-buildroot/Config.in | 8 +-
28 files changed, 1599 insertions(+), 851 deletions(-)
create mode 100644 package/gcc/4.9.4/943-Use-ucontext_t-not-struct-ucontext-in-linux-unwind.h.patch
create mode 100644 package/gcc/4.9.4/944-sanitizer-linux.patch
create mode 100644 package/gcc/5.4.0/943-Use-ucontext_t-not-struct-ucontext-in-linux-unwind.h.patch
create mode 100644 package/gcc/5.4.0/944-sanitizer-linux.patch
create mode 100644 package/gcc/6.4.0/942-Use-ucontext_t-not-struct-ucontext-in-linux-unwind.h.patch
create mode 100644 package/gcc/6.4.0/943-sanitizer-linux.patch
create mode 100644 package/glibc/0001-Do-not-use-__builtin_types_compatible_p-in-C-mode-bu.patch
delete mode 100644 package/glibc/0001-sh-Fix-building-with-gcc5-6.patch
delete mode 100644 package/glibc/0002-CVE-2017-1000366-Ignore-LD_LIBRARY_PATH-for-AT_SECUR.patch
create mode 100644 package/glibc/0002-Do-not-use-generic-selection-in-C-mode.patch
create mode 100644 package/glibc/0003-Provide-a-C-version-of-issignaling-that-does-not-use.patch
delete mode 100644 package/glibc/0003-ld.so-Reject-overly-long-LD_PRELOAD-path-elements.patch
create mode 100644 package/glibc/0004-Fix-the-C-version-of-issignaling-when-__NO_LONG_DOUB.patch
delete mode 100644 package/glibc/0004-ld.so-Reject-overly-long-LD_AUDIT-path-elements.patch
create mode 100644 package/glibc/0005-Provide-a-C-version-of-iszero-that-does-not-use-__MA.patch
delete mode 100644 package/glibc/0005-fix-binutils-2-29-build.patch
delete mode 100644 package/glibc/0006-i686-Add-missing-IS_IN-libc-guards-to-vectorized-strcspn.patch
delete mode 100644 package/glibc/0006-sh4-trap.patch
create mode 100644 package/jsoncpp/0001-json_writer-fix-build-with-glibc-2.26.patch
create mode 100644 package/kodi/0003-dialogs-fix-build-issue-with-glibc-2.26.patch
create mode 100644 package/mesa3d/0005-c99_math-fix-build-issue-with-glibc-2.26.patch
--
2.9.5
next reply other threads:[~2017-09-02 20:54 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-02 20:54 Romain Naour [this message]
2017-09-02 20:54 ` [Buildroot] [PATCH v2 01/11] package/gcc: fix build issue with glibc 2.26 Romain Naour
2017-09-17 16:08 ` Yann E. MORIN
2017-09-17 16:13 ` Yann E. MORIN
2017-09-02 20:54 ` [Buildroot] [PATCH v2 02/11] " Romain Naour
2017-09-17 16:17 ` Yann E. MORIN
2017-09-02 20:54 ` [Buildroot] [PATCH v2 03/11] package/mesa3d: fix build issue with glibc >= 2.26 Romain Naour
2017-09-19 7:54 ` Bernd Kuhls
2017-09-02 20:54 ` [Buildroot] [PATCH v2 04/11] package/jsoncpp: fix build " Romain Naour
2017-09-02 20:54 ` [Buildroot] [PATCH v2 05/11] package/glibc: needs kernel headers >= 3.10 on powerpc64le Romain Naour
2017-09-10 10:30 ` Yann E. MORIN
2017-09-11 23:05 ` Arnout Vandecappelle
2017-09-11 23:37 ` Thomas Petazzoni
2017-09-12 6:04 ` Yann E. MORIN
2017-09-12 7:47 ` Arnout Vandecappelle
2017-09-02 20:54 ` [Buildroot] [PATCH v2 06/11] package/gcc: enable float128 on powerpc64le with glibc >= 2.26 toolchains Romain Naour
2017-09-02 20:54 ` [Buildroot] [PATCH v2 07/11] package/flex: disable reallocarray Romain Naour
2017-09-02 21:12 ` Thomas Petazzoni
2017-09-02 22:23 ` Romain Naour
2017-09-03 7:14 ` Thomas Petazzoni
2017-09-07 21:32 ` Romain Naour
2017-09-13 18:53 ` Jörg Krause
2017-09-13 19:54 ` Romain Naour
2017-09-14 8:25 ` Adrian Perez de Castro
2017-09-14 10:51 ` Jörg Krause
2017-09-02 20:54 ` [Buildroot] [PATCH v2 08/11] package/diffutils: fix build with glibc 2.26 Romain Naour
2017-09-02 20:54 ` [Buildroot] [PATCH v2 09/11] package/kodi: " Romain Naour
2017-09-19 7:51 ` Bernd Kuhls
2017-09-02 20:54 ` [Buildroot] [PATCH v2 10/11] package/glibc: bump to 2.26 Romain Naour
2017-09-19 7:50 ` Bernd Kuhls
2017-09-19 10:43 ` Romain Naour
2017-09-02 20:54 ` [Buildroot] [PATCH v2 11/11] package/glibc: backport fixes for glibc bug 21930 Romain Naour
2017-09-21 10:45 ` [Buildroot] [PATCH v2 00/11] glibc: bump to 2.26 Arnout Vandecappelle
2017-09-21 20:54 ` Romain Naour
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=20170902205423.21288-1-romain.naour@gmail.com \
--to=romain.naour@gmail.com \
--cc=buildroot@busybox.net \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox