gnu: guile@3.0.8: Disable parallel builds when cross-compiling.
Cross builds, as in "guix build guile@3.0.8 --target=i586-pc-gnu", are not bit-reproducible unless built sequentially. * gnu/packages/guile.scm (guile-3.0-latest)[arguments]: Set #:parallel-build? to #f when cross-compiling.
This commit is contained in:
parent
e9b7adde0d
commit
dd6b951fe0
1 changed files with 4 additions and 2 deletions
|
|
@ -403,8 +403,10 @@ without requiring the source code to be rewritten.")
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments guile-3.0)
|
(substitute-keyword-arguments (package-arguments guile-3.0)
|
||||||
;; Guile 3.0.8 is bit-reproducible when built in parallel, thanks to
|
;; Guile 3.0.8 is bit-reproducible when built in parallel, thanks to
|
||||||
;; its multi-stage build process for cross-module inlining.
|
;; its multi-stage build process for cross-module inlining, except when
|
||||||
((#:parallel-build? _ #f) #t)))))
|
;; cross-compiling.
|
||||||
|
((#:parallel-build? _ #f)
|
||||||
|
(not (%current-target-system)))))))
|
||||||
|
|
||||||
(define-public guile-3.0/fixed
|
(define-public guile-3.0/fixed
|
||||||
;; A package of Guile that's rarely changed. It is the one used in the
|
;; A package of Guile that's rarely changed. It is the one used in the
|
||||||
|
|
|
||||||
Reference in a new issue