guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch core-updates updated: gnu: make-bootstrap: Add cross-libc:static


From: guix-commits
Subject: branch core-updates updated: gnu: make-bootstrap: Add cross-libc:static to the inputs.
Date: Thu, 16 Jan 2020 04:15:47 -0500

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 8bd2b15  gnu: make-bootstrap: Add cross-libc:static to the inputs.
8bd2b15 is described below

commit 8bd2b15b06f6306e37cc72995b76a7f0754cf1a6
Author: Mathieu Othacehe <address@hidden>
AuthorDate: Fri Jan 3 15:20:18 2020 +0100

    gnu: make-bootstrap: Add cross-libc:static to the inputs.
    
    This is a follow-up of 4610ab7c9a5327df0d475262817bc081a5891aa8. 'getpw' & 
co
    fail with a cross-compiled statically-linked guile.
    
    * gnu/packages/make-bootstrap.scm (package-with-relocatable-glibc)[inputs]:
    Add "cross-libc:static".
---
 gnu/packages/make-bootstrap.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index d149a7e..0144a6e 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2018, 2019 Mark H Weaver <address@hidden>
 ;;; Copyright © 2018, 2019 Jan (janneke) Nieuwenhuizen <address@hidden>
 ;;; Copyright © 2019 Marius Bakke <address@hidden>
+;;; Copyright © 2020 Mathieu Othacehe <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -137,7 +138,10 @@ for `sh' in $PATH, and without nscd, and with static NSS 
modules."
   (define (inputs)
     (if (%current-target-system)                ; is this package cross built?
         `(("cross-libc"
-           ,(cross-bootstrap-libc (%current-target-system))))
+           ,(cross-bootstrap-libc (%current-target-system)))
+          ("cross-libc:static"
+           ,(cross-bootstrap-libc (%current-target-system))
+           "static"))
         '()))
 
   (define (native-inputs)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]