me
/
guix
Archived
1
0
Fork 0

gnu: make-bootstrap: Add cross-libc:static to the inputs.

This is a follow-up of 4610ab7c9a. 'getpw' & co
fail with a cross-compiled statically-linked guile.

* gnu/packages/make-bootstrap.scm (package-with-relocatable-glibc)[inputs]:
Add "cross-libc:static".
master
Mathieu Othacehe 2020-01-03 15:20:18 +01:00
parent aded68b300
commit 8bd2b15b06
No known key found for this signature in database
GPG Key ID: 8354763531769CA6
1 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,7 @@
;;; Copyright © 2018, 2019 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2018, 2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2019 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Mathieu Othacehe <m.othacehe@gmail.com>
;;;
;;; 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)