mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: bison-boot0: Build sequentially.
This is a followup to2c35ae8219
andb1593c1c4f
. * gnu/packages/commencement.scm (bison-boot0)[arguments]: Add #:parallel-build? and #:parallel-tests? on x86.
This commit is contained in:
parent
7f1d2dd35a
commit
c55fae4520
1 changed files with 11 additions and 0 deletions
|
@ -1719,6 +1719,17 @@ (define bison-boot0
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;... and thus disable tests
|
`(#:tests? #f ;... and thus disable tests
|
||||||
|
|
||||||
|
;; XXX: These flags should be unconditional, but for now
|
||||||
|
;; we just add them on x86 to avoid a full rebuild.
|
||||||
|
;; TODO: On the next core-updates, use
|
||||||
|
;; 'substitute-keyword-arguments' to inherit them from
|
||||||
|
;; BISON.
|
||||||
|
,@(if (member (%current-system)
|
||||||
|
'("x86_64-linux" "i686-linux"))
|
||||||
|
'(#:parallel-build? #f
|
||||||
|
#:parallel-tests? #f)
|
||||||
|
'())
|
||||||
|
|
||||||
;; Zero timestamps in liby.a; this must be done
|
;; Zero timestamps in liby.a; this must be done
|
||||||
;; explicitly here because the bootstrap Binutils don't
|
;; explicitly here because the bootstrap Binutils don't
|
||||||
;; do that (default is "cru".)
|
;; do that (default is "cru".)
|
||||||
|
|
Loading…
Reference in a new issue