mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: julia-arraylayouts: Fix building on more architectures.
* gnu/packages/julia-xyz.scm (julia-arraylayouts)[arguments]: When not building for x86_64-linux add a phase to mark a test broken.
This commit is contained in:
parent
790f68653e
commit
3963fa1a46
1 changed files with 11 additions and 0 deletions
|
@ -242,6 +242,17 @@ (define-public julia-arraylayouts
|
|||
(sha256
|
||||
(base32 "11h0w1bqw2md5gh4dfmm1aazifcs2ydrc47hqzvav1xrx25b57z5"))))
|
||||
(build-system julia-build-system)
|
||||
(arguments
|
||||
(if (not (target-x86-64?))
|
||||
;; This test is only broken when using openblas, not openblas-ilp64.
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'adjust-tests
|
||||
(lambda _
|
||||
(substitute* "test/test_layoutarray.jl"
|
||||
(("test all\\(B") "test_broken all(B"))))))
|
||||
'()))
|
||||
(propagated-inputs
|
||||
(list julia-fillarrays))
|
||||
(native-inputs
|
||||
|
|
Loading…
Reference in a new issue