guix-commits
[Top][All Lists]
Advanced

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

03/09: gnu: crypto++: Build in parallel.


From: guix-commits
Subject: 03/09: gnu: crypto++: Build in parallel.
Date: Wed, 19 Feb 2020 18:46:37 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit bfa3caa2fb1436c4d0e24036a9ea60ccc19aabae
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Wed Feb 19 18:46:04 2020 +0100

    gnu: crypto++: Build in parallel.
    
    * gnu/packages/crypto.scm (crypto++)[arguments]: Make ‘build-shared’
    the main ‘build’ phase.  Respect MAKE-FLAGS and PARALLEL-JOB-COUNT.
---
 gnu/packages/crypto.scm | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 8d81fa7..aa65774 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -627,10 +627,12 @@ data on your platform, so the seed itself will be as 
random as possible.
                ((" -march=native") ""))
              #t))
          (delete 'configure)
-         (add-after 'build 'build-shared
-           (lambda _
-             ;; By default, only the static library is built.
-             (invoke "make" "shared")))
+         (replace 'build
+           ;; By default, only the static library is built.
+           (lambda* (#:key (make-flags '()) #:allow-other-keys)
+             (apply invoke "make" "shared"
+                    "-j" (number->string (parallel-job-count))
+                    make-flags)))
          (add-after 'install 'install-shared-library-links
            ;; By default, only .so and .so.x.y.z are installed.
            ;; Create all the ‘intermediates’ expected by dependent packages.



reply via email to

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