mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
build-system/gnu: Add the "static" output of libc in cross environments.
Fixes a regression whereby the host libc.a would be missing when
cross-compiling.
This is a followup to commit 6dff905e51
.
* guix/build-system/gnu.scm (standard-cross-packages): Add the
"cross-libc:static".
This commit is contained in:
parent
1b0f65dc99
commit
614fffe427
1 changed files with 3 additions and 1 deletions
|
@ -414,7 +414,9 @@ (define standard-cross-packages
|
|||
#:libc (libc target)))
|
||||
("cross-binutils" ,(binutils target))))
|
||||
((target)
|
||||
`(("cross-libc" ,(libc target))))))))
|
||||
(let ((libc (libc target)))
|
||||
`(("cross-libc" ,libc)
|
||||
("cross-libc:static" ,libc "static"))))))))
|
||||
|
||||
(define* (gnu-cross-build store name
|
||||
#:key
|
||||
|
|
Loading…
Reference in a new issue