diff options
author | Rutherther <rutherther@ditigal.xyz> | 2025-05-16 12:48:51 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:33 +0200 |
commit | f9b639a46f59e5e19694b245a631e0ce41b0555a (patch) | |
tree | a1a9c462864397a088013cdfe56cf854657901c2 | |
parent | 0f88bff11cc96df80d1279fec319be494e2cb5a1 (diff) |
gnu: xz-mesboot: Disable parallel build.
Fixes <https://issues.guix.gnu.org/78453>.
Disables parallel build, because the build gets stuck with parallel builds on
x86_64 at least.
* gnu/packages/commencement.scm (xz-mesboot): Disable parallel builds.
Change-Id: I0367363cbaaeb0ae5730242254c918cd7ec71478
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/commencement.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 7b12f1320f..cd3a9c49f1 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -1939,7 +1939,10 @@ exec " gcc "/bin/" program (ensure-keyword-arguments (package-arguments pkg) ;; XXX: This fails even though the ;; actual runpaths seem fine. - `(#:validate-runpath? #f)))))) + `(#:validate-runpath? #f + ;; XXX: The build gets stuck + ;; when parallel build is enabled. + #:parallel-build? #f)))))) ;; We don't strictly need Tar here, but it allows us to get rid of ;; Bootar and Gash-Utils and continue with the standard GNU tools. |