guix_mirror_bot pushed a commit to branch master
in repository guix.

commit abe3cfc56f647da33d824ffcdcd614655243c628
Author: Andreas Enge <[email protected]>
AuthorDate: Tue Aug 19 20:33:54 2025 +0200

    gnu: libomp-8: Inherit from libomp-12.
    
    This is the highest version for which the derivation does not change.
    
    * gnu/packages/llvm.scm (libomp-8)[inherit, native-inputs]: Replace
    libomp-9 by libomp-12.
    
    Change-Id: I8fc0386a42ca04d67dd5890207847cf17454ab50
---
 gnu/packages/llvm.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index a81cfe83d9..9a184018a6 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -1227,7 +1227,7 @@ Library.")
 
 (define-public libomp-8
   (package
-    (inherit libomp-9)
+    (inherit libomp-12)
     (version (package-version llvm-8))
     (source (origin
               (method url-fetch)
@@ -1237,7 +1237,7 @@ Library.")
                 "0b3jlxhqbpyd1nqkpxjfggm5d9va5qpyf7d4i5y7n4a1mlydv19y"))
               (file-name (string-append "libomp-" version ".tar.xz"))))
     (native-inputs
-     (modify-inputs (package-native-inputs libomp-9)
+     (modify-inputs (package-native-inputs libomp-12)
        (replace "clang" clang-8)
        (replace "llvm" llvm-8)))
     (license license:ncsa)))

Reply via email to