[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/18: gnu: binutils-final: Provide bash for binary on powerpc-linux.
From: |
guix-commits |
Subject: |
02/18: gnu: binutils-final: Provide bash for binary on powerpc-linux. |
Date: |
Fri, 12 Mar 2021 03:22:38 -0500 (EST) |
efraim pushed a commit to branch wip-ppc
in repository guix.
commit b56643a6aa3a318f81a1839e621e47cb1afbcda8
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Apr 19 18:55:57 2020 +0300
gnu: binutils-final: Provide bash for binary on powerpc-linux.
* gnu/packages/commencement.scm (binutils-final)[arguments]: On
powerpc-linux allow a reference to static-bash-for-glibc.
[inputs]: On powerpc-linux add static-bash-for-glibc.
---
gnu/packages/commencement.scm | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 890d579..e8ea822 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -3396,9 +3396,19 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a
\"$@\"~%"
(arguments
`(#:guile ,%bootstrap-guile
#:implicit-inputs? #f
- #:allowed-references ("out" ,glibc-final)
+ #:allowed-references
+ ,@(match (%current-system)
+ ("powerpc-linux"
+ `(("out" ,glibc-final ,static-bash-for-glibc)))
+ (_
+ `(("out" ,glibc-final))))
,@(package-arguments binutils)))
- (inputs (%boot2-inputs))))
+ (inputs
+ (match (%current-system)
+ ("powerpc-linux"
+ `(("bash" ,static-bash-for-glibc)
+ ,@(%boot2-inputs)))
+ (_ (%boot2-inputs))))))
(define libstdc++
;; Intermediate libstdc++ that will allow us to build the final GCC
- branch wip-ppc created (now a82a550), guix-commits, 2021/03/12
- 02/18: gnu: binutils-final: Provide bash for binary on powerpc-linux.,
guix-commits <=
- 04/18: gnu: gd: Fix tests., guix-commits, 2021/03/12
- 05/18: gnu: mesa: Add support for powerpc-linux., guix-commits, 2021/03/12
- 01/18: gnu: bootstrap: Add support for powerpc-linux., guix-commits, 2021/03/12
- 03/18: gnu: datefudge: Only use glibc-2.31 workaround on supported platforms., guix-commits, 2021/03/12
- 06/18: gnu: Add mac-fdisk., guix-commits, 2021/03/12
- 08/18: build: qemu-command: Add support for powerpc., guix-commits, 2021/03/12
- 09/18: gnu: mercurial: Skip tests on powerpc-linux., guix-commits, 2021/03/12
- 11/18: gnu: glibc: Fix ldd path on powerpc*., guix-commits, 2021/03/12
- 13/18: gnu: findutils-boot0: Fix test suite on some systems., guix-commits, 2021/03/12
- 07/18: gnu: american-fuzzy-lop: Add support for powerpc-linux., guix-commits, 2021/03/12