From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52633) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1izlSc-0008KL-DY for guix-patches@gnu.org; Thu, 06 Feb 2020 13:01:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1izlSa-0004SV-1U for guix-patches@gnu.org; Thu, 06 Feb 2020 13:01:06 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42416) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1izlSY-0004PM-6l for guix-patches@gnu.org; Thu, 06 Feb 2020 13:01:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1izlSY-0008W8-4N for guix-patches@gnu.org; Thu, 06 Feb 2020 13:01:02 -0500 Subject: [bug#39456] [PATCH core-updates 0/6] glibc & binutils update Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:52279) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1izlRZ-0007Zq-Ra for guix-patches@gnu.org; Thu, 06 Feb 2020 13:00:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1izlRW-0002cS-A0 for guix-patches@gnu.org; Thu, 06 Feb 2020 13:00:01 -0500 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:60743) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1izlRW-0002be-12 for guix-patches@gnu.org; Thu, 06 Feb 2020 12:59:58 -0500 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 9B55D22195 for ; Thu, 6 Feb 2020 12:59:57 -0500 (EST) Received: from localhost (ti0006q161-3035.bb.online.no [84.202.69.253]) by mail.messagingengine.com (Postfix) with ESMTPA id 0CD233060717 for ; Thu, 6 Feb 2020 12:59:56 -0500 (EST) From: Marius Bakke Date: Thu, 6 Feb 2020 18:59:55 +0100 Message-Id: <20200206175955.12147-1-mbakke@fastmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39456@debbugs.gnu.org These patches update Binutils and Glibc to the latest versions, as well as Linux-Libre headers (I will change from 5.4.16 to 5.4.18 or whatever is current before pushing). Glibc 2.31 required patching every GCC version due to a size change that trips libsanitizer. It also requires patching older glibc versions due to an unrelated change, but I'm not sure what the correct fix is. Try building glibc-locales@2.29 with these patches to join the quest. The GCC patches were pretty tricky, and unfortunately required small tweaks between each version. I would prefer if someone else tried cherry-picking the relevant upstream commits to an older GCC and see if they get the same result I did. See the patch files for URLs. Marius Bakke (6): gnu: linux-libre-headers: Update to 5.4.16. gnu: dnsmasq: Fix build with linux-libre-headers >= 5.2. gnu: binutils: Update to 2.34. gnu: cross-binutils: Fix xtensa build with Binutils 2.34. gnu: glibc: Update to 2.31. gnu: libfaketime: Fix build with glibc 2.31. gnu/local.mk | 7 + gnu/packages/base.scm | 55 +- gnu/packages/check.scm | 4 + gnu/packages/commencement.scm | 15 +- gnu/packages/cross-base.scm | 15 +- gnu/packages/dns.scm | 14 +- gnu/packages/gcc.scm | 6 + gnu/packages/linux.scm | 8 +- .../binutils-revert-xtensa-shift.patch | 4091 +++++++++++++++++ .../gcc-4.9-libsanitizer-mode-size.patch | 52 + .../gcc-6-libsanitizer-mode-size.patch | 53 + .../gcc-7-libsanitizer-mode-size.patch | 53 + .../gcc-8-libsanitizer-mode-size.patch | 56 + .../gcc-9-libsanitizer-mode-size.patch | 58 + .../glibc-2.29-supported-locales.patch | 33 + .../patches/glibc-supported-locales.patch | 11 +- 16 files changed, 4503 insertions(+), 28 deletions(-) create mode 100644 gnu/packages/patches/binutils-revert-xtensa-shift.patch create mode 100644 gnu/packages/patches/gcc-4.9-libsanitizer-mode-size.patch create mode 100644 gnu/packages/patches/gcc-6-libsanitizer-mode-size.patch create mode 100644 gnu/packages/patches/gcc-7-libsanitizer-mode-size.patch create mode 100644 gnu/packages/patches/gcc-8-libsanitizer-mode-size.patch create mode 100644 gnu/packages/patches/gcc-9-libsanitizer-mode-size.patch create mode 100644 gnu/packages/patches/glibc-2.29-supported-locales.patch -- 2.25.0