gnu: llvm-13: Skip tests on riscv64-linux.

* gnu/packages/llvm.scm (llvm-13)[arguments]: Skip the tests when
building for riscv64-linux.

Change-Id: If7e391e1ce51d93766c89bee1db590b9ab5f12ea
This commit is contained in:
Efraim Flashner 2025-09-18 08:45:11 +03:00
parent 9cba4234eb
commit aa47a27f9a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -891,6 +891,12 @@ Library.")
(patches (search-patches "llvm-13-gcc-14.patch"))))
(arguments
(substitute-keyword-arguments (package-arguments llvm-14)
((#:tests? _ #t)
;; The tests on riscv64 error on the differences between
;; generic and generic-rv64.
(not (or (%current-target-system)
(target-x86-32?)
(target-riscv64?))))
((#:phases phases '%standard-phases)
#~(modify-phases #$phases
(delete 'change-directory)))))