[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#43516] [PATCH core-updates] packages: Enable multi-threaded xz comp
From: |
Maxim Cournoyer |
Subject: |
[bug#43516] [PATCH core-updates] packages: Enable multi-threaded xz compression when repacking source. |
Date: |
Sat, 19 Sep 2020 13:03:57 -0400 |
The xz compression is slow; using multiple threads/cores yields a linear
performance improvement.
* guix/packages.scm (patch-and-repack): Ensure xz is invoked with --threads=N
by setting the XZ_DEFAULTS environment variable.
---
guix/packages.scm | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/guix/packages.scm b/guix/packages.scm
index 6598bd3149..678007a807 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -5,6 +5,7 @@
;;; Copyright ?? 2016 Alex Kost <alezost@gmail.com>
;;; Copyright ?? 2017, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright ?? 2019 Marius Bakke <mbakke@fastmail.com>
+;;; Copyright ?? 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -693,6 +694,11 @@ specifies modules in scope when evaluating SNIPPET."
(setenv "PATH" (string-append #+xz "/bin" ":"
#+decomp "/bin"))
+ ;; Enable multi-threaded compression for xz.
+ (setenv "XZ_DEFAULTS" (string-append "--threads="
+ (number->string
+ (parallel-job-count))))
+
;; SOURCE may be either a directory or a tarball.
(if (file-is-directory? #+source)
(let* ((store (%store-directory))
--
2.28.0
- [bug#43516] [PATCH core-updates] packages: Enable multi-threaded xz compression when repacking source.,
Maxim Cournoyer <=