guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: bison-boot0: Build sequentially.


From: guix-commits
Subject: 01/01: gnu: bison-boot0: Build sequentially.
Date: Wed, 28 Aug 2019 18:10:13 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit c55fae452032aa4b1b63406983e9abdf70adc957
Author: Ludovic Courtès <address@hidden>
Date:   Wed Aug 28 23:56:10 2019 +0200

    gnu: bison-boot0: Build sequentially.
    
    This is a followup to 2c35ae82192fd6f1732b15fa41aec87aa61a1879 and
    b1593c1c4fd8f4fc6df4c43cab51334426e3aa76.
    
    * gnu/packages/commencement.scm (bison-boot0)[arguments]: Add
     #:parallel-build? and #:parallel-tests? on x86.
---
 gnu/packages/commencement.scm | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 69d1f87..79f2e49 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1719,6 +1719,17 @@ exec " gcc "/bin/" program
                   (arguments
                    `(#:tests? #f                  ;... and thus disable tests
 
+                     ;; XXX: These flags should be unconditional, but for now
+                     ;; we just add them on x86 to avoid a full rebuild.
+                     ;; TODO: On the next core-updates, use
+                     ;; 'substitute-keyword-arguments' to inherit them from
+                     ;; BISON.
+                     ,@(if (member (%current-system)
+                                   '("x86_64-linux" "i686-linux"))
+                           '(#:parallel-build? #f
+                             #:parallel-tests? #f)
+                           '())
+
                      ;; Zero timestamps in liby.a; this must be done
                      ;; explicitly here because the bootstrap Binutils don't
                      ;; do that (default is "cru".)



reply via email to

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