Skip to content
Snippets Groups Projects
Commit c71493c8 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

build: Check the availability of i686-linux binaries.

* build-aux/check-available-binaries.scm (%supported-systems): New
  variable.
  (native): Map over these.
parent 1959fb04
No related branches found
No related tags found
No related merge requests found
...@@ -28,9 +28,14 @@ ...@@ -28,9 +28,14 @@
(srfi srfi-1) (srfi srfi-1)
(srfi srfi-26)) (srfi srfi-26))
(define %supported-systems
'("x86_64-linux" "i686-linux"))
(let* ((store (open-connection)) (let* ((store (open-connection))
(native (map (cut package-derivation store <>) (native (append-map (lambda (system)
(list %bootstrap-tarballs emacs))) (map (cut package-derivation store <> system)
(list %bootstrap-tarballs emacs)))
%supported-systems))
(cross (map (cut package-cross-derivation store (cross (map (cut package-cross-derivation store
%bootstrap-tarballs <>) %bootstrap-tarballs <>)
'("mips64el-linux-gnuabi64"))) '("mips64el-linux-gnuabi64")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment