This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch next-master
in repository guix.
The following commit(s) were added to refs/heads/next-master by this push:
new 1afa90ee1e gnu: mold: Update dependency on tbb.
1afa90ee1e is described below
commit 1afa90ee1e29d77c51990c90c62d0321a3c5ca40
Author: Cayetano Santos <[email protected]>
AuthorDate: Fri Jan 16 22:25:16 2026 +0100
gnu: mold: Update dependency on tbb.
* gnu/packages/mold.scm (mold)[inputs]: Remove tbb; add onetbb.
[arguments]: Remove ’skip-tbb-lto-test #:phase.
Change-Id: I80bf0f5c41a658e684cb6f26946480eea1eefe1e
---
gnu/packages/mold.scm | 8 ++------
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/mold.scm b/gnu/packages/mold.scm
index 113433f490..067a232144 100644
--- a/gnu/packages/mold.scm
+++ b/gnu/packages/mold.scm
@@ -28,7 +28,7 @@
#:use-module (gnu packages base)
#:use-module (gnu packages c)
#:use-module (gnu packages digest)
- #:use-module (gnu packages tbb)
+ #:use-module (gnu packages oneapi)
#:use-module (gnu packages tls)
#:use-module (gnu packages compression)
#:use-module ((guix licenses) #:prefix license:))
@@ -75,10 +75,6 @@
(("CC=\"\\$\\{TEST_CC:-cc\\}\"") "CC=gcc")
(("CXX=\"\\$\\{TEST_CXX:-c\\+\\+\\}\"")
"CXX=g++"))))
- (add-before 'configure 'skip-tbb-lto-test
- (lambda _
- ;; This test needs tbb 2021.9.0 or newer
- (delete-file "test/lto-version-script.sh")))
(add-before 'configure 'disable-rpath-test
(lambda _
;; This test fails because mold expect the RUNPATH as-is,
@@ -90,7 +86,7 @@
(if (target-64bit?)
(list mimalloc)
'())
- (list tbb xxhash zlib `(,zstd "lib"))))
+ (list onetbb xxhash zlib `(,zstd "lib"))))
(home-page "https://github.com/rui314/mold")
(synopsis "Fast linker")
(description