guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 494051fef5872a1272d47384004ecbe93f8c50e0
Author: Rutherther <[email protected]>
AuthorDate: Tue Sep 9 18:38:02 2025 +0200

    gnu: llvm-14: Disable tests for cross compilation.
    
    * gnu/packages/llvm.scm (llvm-14)[arguments]<#:tests?>:
    Disable for cross compilation.
    
    Change-Id: Ie97aad850645fd875620df36b64c145af43e842e
    Signed-off-by: Efraim Flashner <[email protected]>
---
 gnu/packages/llvm.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index d4de54f204..701d35d92f 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -717,7 +717,8 @@ of programming tools as well as libraries with equivalent 
functionality.")
       #:modules '((guix build cmake-build-system)
                   ((guix build gnu-build-system) #:prefix gnu:)
                   (guix build utils))
-      #:tests? (not (target-x86-32?))
+      #:tests? (not (or (%current-target-system)
+                        (target-x86-32?)))
       #:configure-flags
       #~(list
          ;; These options are required for cross-compiling LLVM according

Reply via email to