From 9306d350b2ab911cdebf82cf79c23df2c57b2a10 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Tue, 25 Jun 2013 23:45:34 +0200 Subject: build: Build the bootstrap tarballs on Hydra. * build-aux/hydra/gnu-system.scm (%packages-to-cross-build): Uncomment the bootstrap tarball packages. --- build-aux/hydra/gnu-system.scm | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'build-aux') diff --git a/build-aux/hydra/gnu-system.scm b/build-aux/hydra/gnu-system.scm index f03c201223..2fffe25009 100644 --- a/build-aux/hydra/gnu-system.scm +++ b/build-aux/hydra/gnu-system.scm @@ -79,12 +79,11 @@ (define (package-cross-job store job-name package target system) (define %packages-to-cross-build (list gmp mpfr mpc coreutils findutils diffutils patch sed grep gawk gettext hello guile-2.0 - ;; %bootstrap-binaries-tarball - ;; %binutils-bootstrap-tarball - ;; %glibc-bootstrap-tarball - ;; %gcc-bootstrap-tarball - ;; %guile-bootstrap-tarball - )) + %bootstrap-binaries-tarball + %binutils-bootstrap-tarball + %glibc-bootstrap-tarball + %gcc-bootstrap-tarball + %guile-bootstrap-tarball)) (define %cross-targets '("mips64el-linux-gnu")) -- cgit v1.2.3 From 58ab9f9b8e80f9f0eb1e1e1c2e41e97533b65371 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Wed, 26 Jun 2013 22:41:09 +0200 Subject: 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". --- build-aux/hydra/gnu-system.scm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'build-aux') 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 @@ (define %packages-to-cross-build %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." -- cgit v1.2.3