me
/
guix
Archived
1
0
Fork 0

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.
Ludovic Courtès 2022-03-01 10:59:02 +01:00
parent e9b7adde0d
commit dd6b951fe0
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 2 deletions

View File

@ -403,8 +403,10 @@ without requiring the source code to be rewritten.")
(arguments
(substitute-keyword-arguments (package-arguments guile-3.0)
;; Guile 3.0.8 is bit-reproducible when built in parallel, thanks to
;; its multi-stage build process for cross-module inlining.
((#:parallel-build? _ #f) #t)))))
;; its multi-stage build process for cross-module inlining, except when
;; cross-compiling.
((#:parallel-build? _ #f)
(not (%current-target-system)))))))
(define-public guile-3.0/fixed
;; A package of Guile that's rarely changed. It is the one used in the