[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/12: FIXME: Downgrade glibc to 2.30.
From: |
guix-commits |
Subject: |
01/12: FIXME: Downgrade glibc to 2.30. |
Date: |
Sun, 26 Jul 2020 03:08:56 -0400 (EDT) |
efraim pushed a commit to branch wip-ppc
in repository guix.
commit 96860d22b403ecc2755e80b2ba165da55e5c0f39
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Fri Apr 17 14:12:41 2020 +0300
FIXME: Downgrade glibc to 2.30.
glibc-2.31 produces unusable bootstrap-binaries on powerpc-linux-gnu.
Use 2.30 for bootstrap-binaries and then return to 2.31 afterward.
---
gnu/packages/base.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm
index 10b7361..52ff4d9 100644
--- a/gnu/packages/base.scm
+++ b/gnu/packages/base.scm
@@ -694,7 +694,7 @@ the store.")
(export make-ld-wrapper)
-(define-public glibc
+(define-public glibc-2.31
;; This is the GNU C Library, used on GNU/Linux and GNU/Hurd. Prior to
;; version 2.28, GNU/Hurd used a different glibc branch.
(package
@@ -953,10 +953,10 @@ with the Linux kernel.")
(define-public glibc-2.30
(package
- (inherit glibc)
+ (inherit glibc-2.31)
(version "2.30")
(source (origin
- (inherit (package-source glibc))
+ (inherit (package-source glibc-2.31))
(uri (string-append "mirror://gnu/glibc/glibc-" version
".tar.xz"))
(sha256
(base32
@@ -969,6 +969,8 @@ with the Linux kernel.")
"glibc-reinstate-prlimit64-fallback.patch"
"glibc-2.29-supported-locales.patch"))))))
+(define glibc glibc-2.30)
+
(define-public glibc-2.29
(package
(inherit glibc)
- branch wip-ppc created (now 5dd2537), guix-commits, 2020/07/26
- 01/12: FIXME: Downgrade glibc to 2.30.,
guix-commits <=
- 03/12: FIXME: allow reference to bootstrap-binaries in binutils-final, guix-commits, 2020/07/26
- 02/12: WIP add powerpc support, guix-commits, 2020/07/26
- 05/12: gnu: gd: Fix tests., guix-commits, 2020/07/26
- 06/12: gnu: mesa: Add support for powerpc-linux., guix-commits, 2020/07/26
- 04/12: gnu: datefudge: Only use glibc-2.31 workaround on supported platforms., guix-commits, 2020/07/26
- 07/12: gnu: Add mac-fdisk., guix-commits, 2020/07/26
- 08/12: gnu: american-fuzzy-lop: Add support for powerpc-linux., guix-commits, 2020/07/26
- 11/12: gnu: mercurial: Skip tests on powerpc-linux., guix-commits, 2020/07/26
- 09/12: build: qemu-command: Add support for powerpc., guix-commits, 2020/07/26
- 10/12: WIP add powerpc kernel, guix-commits, 2020/07/26