me
/
guix
Archived
1
0
Fork 0

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.
master
Ricardo Wurmus 2022-11-09 10:33:45 +01:00
parent e2a0f21a5b
commit d42856670d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 3 additions and 0 deletions

View File

@ -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)