summaryrefslogtreecommitdiff
path: root/build-aux
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-06-26 22:41:09 +0200
committerLudovic Courtès <ludo@gnu.org>2013-06-26 22:41:09 +0200
commit58ab9f9b8e80f9f0eb1e1e1c2e41e97533b65371 (patch)
tree41af2c2dcc32323ed5c2c91310f32504174ecd6a /build-aux
parentbeda99e882e6049f4bf426551d0fd8a2cc7127e0 (diff)
downloadguix-patches-58ab9f9b8e80f9f0eb1e1e1c2e41e97533b65371.tar
guix-patches-58ab9f9b8e80f9f0eb1e1e1c2e41e97533b65371.tar.gz
build: Add "mips64el-linux-gnuabi64" as a cross build target.
* build-aux/hydra/gnu-system.scm (%packages-to-cross-build): Add %bootstrap-tarballs. (%cross-targets): Add "mips64el-linux-gnuabi64".
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/hydra/gnu-system.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm
index 2fffe25009..de3cd1154b 100644
--- a/build-aux/hydra/gnu-system.scm
+++ b/build-aux/hydra/gnu-system.scm
@@ -83,10 +83,12 @@ SYSTEM."
%binutils-bootstrap-tarball
%glibc-bootstrap-tarball
%gcc-bootstrap-tarball
- %guile-bootstrap-tarball))
+ %guile-bootstrap-tarball
+ %bootstrap-tarballs))
(define %cross-targets
- '("mips64el-linux-gnu"))
+ '("mips64el-linux-gnu"
+ "mips64el-linux-gnuabi64"))
(define (hydra-jobs store arguments)
"Return Hydra jobs."