mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
9cba4234eb
commit
aa47a27f9a
1 changed files with 6 additions and 0 deletions
|
@ -891,6 +891,12 @@ Library.")
|
||||||
(patches (search-patches "llvm-13-gcc-14.patch"))))
|
(patches (search-patches "llvm-13-gcc-14.patch"))))
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments llvm-14)
|
(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)
|
((#:phases phases '%standard-phases)
|
||||||
#~(modify-phases #$phases
|
#~(modify-phases #$phases
|
||||||
(delete 'change-directory)))))
|
(delete 'change-directory)))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue