guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d001e3e207cfa03c0467498801633594ef955d51
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Mar 8 11:26:30 2026 +0200

    gnu: llvm-18: Skip the tests on armhf-linux.
    
    * gnu/packages/llvm.scm (llvm-18)[arguments]: Skip the tests when
    building for armhf-linux.
    
    Change-Id: Ia6f94e4ba911a2c56cc279b9136db4383daed698
---
 gnu/packages/llvm.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 7c68b18c71..c893e84e79 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -1131,10 +1131,11 @@ Library.")
               (srfi srfi-26)
               ,@modules)
             modules))
-       ;; TODO: Figure out why some tests fail on powerpc64le-linux.
+       ;; TODO: Figure out why some tests fail on some architectures.
        ((#:tests? current-test-config #t)
         (and current-test-config
-             (not (target-ppc64le?))))
+             (not (target-ppc64le?))
+             (not (target-arm32?))))
        ((#:configure-flags cf #~'())
         (if (%current-target-system)
             ;; Use a newer version of llvm-tblgen and add the new

Reply via email to