Skip to content
Snippets Groups Projects
Commit db1a1531 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

Support build-cores = 0; change `guix-build' to default to 0.

* guix/build/gnu-build-system.scm (%parallel-job-count): New variable.
  (build, check): Use it instead of $NIX_BUILD_CORES.

* guix-build.in (guix-build): Default to 0 for the #:build-cores option.
parent 7da7ae93
No related branches found
No related tags found
No related merge requests found
...@@ -198,8 +198,7 @@ Report bugs to: ~a.~%") "@PACKAGE_BUGREPORT@")) ...@@ -198,8 +198,7 @@ Report bugs to: ~a.~%") "@PACKAGE_BUGREPORT@"))
;; TODO: Add more options. ;; TODO: Add more options.
(set-build-options %store (set-build-options %store
#:keep-failed? (assoc-ref opts 'keep-failed?) #:keep-failed? (assoc-ref opts 'keep-failed?)
#:build-cores (or (assoc-ref opts 'cores) #:build-cores (or (assoc-ref opts 'cores) 0))
(current-processor-count)))
(if (assoc-ref opts 'derivations-only?) (if (assoc-ref opts 'derivations-only?)
(format #t "~{~a~%~}" drv) (format #t "~{~a~%~}" drv)
......
...@@ -128,11 +128,18 @@ (define* (configure #:key outputs (configure-flags '()) out-of-source? ...@@ -128,11 +128,18 @@ (define* (configure #:key outputs (configure-flags '()) out-of-source?
(string-append srcdir "/configure") (string-append srcdir "/configure")
flags)))) flags))))
(define %parallel-job-count
;; String to be passed next to GNU Make's `-j' argument.
(match (getenv "NIX_BUILD_CORES")
(#f "1")
("0" (number->string (current-processor-count)))
(x x)))
(define* (build #:key (make-flags '()) (parallel-build? #t) (define* (build #:key (make-flags '()) (parallel-build? #t)
#:allow-other-keys) #:allow-other-keys)
(zero? (apply system* "make" (zero? (apply system* "make"
`(,@(if parallel-build? `(,@(if parallel-build?
`("-j" ,(getenv "NIX_BUILD_CORES")) `("-j" ,%parallel-job-count)
'()) '())
,@make-flags)))) ,@make-flags))))
...@@ -142,7 +149,7 @@ (define* (check #:key (make-flags '()) (tests? #t) (test-target "check") ...@@ -142,7 +149,7 @@ (define* (check #:key (make-flags '()) (tests? #t) (test-target "check")
(if tests? (if tests?
(zero? (apply system* "make" test-target (zero? (apply system* "make" test-target
`(,@(if parallel-tests? `(,@(if parallel-tests?
`("-j" ,(getenv "NIX_BUILD_CORES")) `("-j" ,%parallel-job-count)
'()) '())
,@make-flags))) ,@make-flags)))
(begin (begin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment