guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/02: gnu: bart: Do not build in parallel.


From: guix-commits
Subject: 01/02: gnu: bart: Do not build in parallel.
Date: Wed, 9 Nov 2022 04:37:54 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit d42856670d043b80d9e776ab78c5f393ca103d54
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Nov 9 10:33:45 2022 +0100

    gnu: bart: Do not build in parallel.
    
    This is necessary for a reproducible build.
    
    * gnu/packages/image-processing.scm (bart)[arguments]: Add PARALLEL and
    PARALLEL_NJOBS to make flags; disable parallel build.
---
 gnu/packages/image-processing.scm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gnu/packages/image-processing.scm 
b/gnu/packages/image-processing.scm
index cae9c55a73..9bf743bf45 100644
--- a/gnu/packages/image-processing.scm
+++ b/gnu/packages/image-processing.scm
@@ -117,10 +117,13 @@
       #:test-target "utest"
       #:make-flags #~(list
                       (string-append "PREFIX=" #$output)
+                      "PARALLEL=1"
+                      "PARALLEL_NJOBS=1"
                       "OPENBLAS=1"
                       "SCALAPACK=1"
                       (string-append "BLAS_BASE=" #$(this-package-input 
"openblas"))
                       (string-append "FFTW_BASE=" #$(this-package-input 
"fftw")))
+      #:parallel-build? #false ;leads to non-deterministic output
       #:phases
       #~(modify-phases %standard-phases
           (delete 'configure)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]