mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
hydra: Build GCC and glibc, not their '-final' variant.
* build-aux/hydra/gnu-system.scm (%core-packages): Replace GCC-FINAL and GLIBC-FINAL with GCC and GLIBC.
This commit is contained in:
parent
2ed6aa9e39
commit
707c8b2ca7
1 changed files with 4 additions and 1 deletions
|
@ -87,7 +87,10 @@ (define (package-cross-job store job-name package target system)
|
||||||
(cut package-cross-derivation <> <> target <>))))
|
(cut package-cross-derivation <> <> target <>))))
|
||||||
|
|
||||||
(define %core-packages
|
(define %core-packages
|
||||||
(list gcc-final glibc-final binutils
|
;; Note: Don't put the '-final' package variants because (1) that's
|
||||||
|
;; implicit, and (2) they cannot be cross-built (due to the explicit input
|
||||||
|
;; chain.)
|
||||||
|
(list gcc glibc binutils
|
||||||
gmp mpfr mpc coreutils findutils diffutils patch sed grep
|
gmp mpfr mpc coreutils findutils diffutils patch sed grep
|
||||||
gawk gnu-gettext hello guile-2.0 zlib gzip xz
|
gawk gnu-gettext hello guile-2.0 zlib gzip xz
|
||||||
%bootstrap-binaries-tarball
|
%bootstrap-binaries-tarball
|
||||||
|
|
Loading…
Reference in a new issue