This is an automated email from the git hooks/post-receive script.
marusich pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 8159ce1 gnu: bootstrap: Add powerpc64-linux dynamic linker.
8159ce1 is described below
commit 8159ce1970d91567468cf1bacac313099a009d2a
Author: Léo Le Bouter <[email protected]>
AuthorDate: Tue May 21 05:00:30 2019 +0000
gnu: bootstrap: Add powerpc64-linux dynamic linker.
This makes it possible to build bootstrap binaries for powerpc64-linux:
guix build --target=powerpc64-linux-gnu bootstrap-tarballs
* gnu/packages/bootstrap.scm (glibc-dynamic-linker): Add an entry for
powerpc64-linux.
Signed-off-by: Chris Marusich <[email protected]>
---
gnu/packages/bootstrap.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/bootstrap.scm b/gnu/packages/bootstrap.scm
index a3ecb6e..c39e60e 100644
--- a/gnu/packages/bootstrap.scm
+++ b/gnu/packages/bootstrap.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2017, 2020 Efraim Flashner <[email protected]>
;;; Copyright © 2018, 2020 Jan (janneke) Nieuwenhuizen <[email protected]>
;;; Copyright © 2019 Carl Dong <[email protected]>
+;;; Copyright © 2019 Léo Le Bouter <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -285,6 +286,7 @@ or false to signal an error."
((string=? system "i686-gnu") "/lib/ld.so.1")
((string=? system "aarch64-linux") "/lib/ld-linux-aarch64.so.1")
((string=? system "powerpc-linux") "/lib/ld.so.1")
+ ((string=? system "powerpc64-linux") "/lib/ld64.so.1")
((string=? system "powerpc64le-linux") "/lib/ld64.so.2")
((string=? system "alpha-linux") "/lib/ld-linux.so.2")
((string=? system "s390x-linux") "/lib/ld64.so.1")