mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
build: Check the availability of i686-linux binaries.
* build-aux/check-available-binaries.scm (%supported-systems): New variable. (native): Map over these.
This commit is contained in:
parent
1959fb04dc
commit
c71493c8b9
1 changed files with 7 additions and 2 deletions
|
@ -28,9 +28,14 @@
|
|||
(srfi srfi-1)
|
||||
(srfi srfi-26))
|
||||
|
||||
(define %supported-systems
|
||||
'("x86_64-linux" "i686-linux"))
|
||||
|
||||
(let* ((store (open-connection))
|
||||
(native (map (cut package-derivation store <>)
|
||||
(list %bootstrap-tarballs emacs)))
|
||||
(native (append-map (lambda (system)
|
||||
(map (cut package-derivation store <> system)
|
||||
(list %bootstrap-tarballs emacs)))
|
||||
%supported-systems))
|
||||
(cross (map (cut package-cross-derivation store
|
||||
%bootstrap-tarballs <>)
|
||||
'("mips64el-linux-gnuabi64")))
|
||||
|
|
Loading…
Reference in a new issue