gnu: openssl: Fix build on riscv64-linux.

* gnu/packages/tls.scm (openssl)[arguments]: On riscv64-linux use a
custom 'check phase to skip a failing test.
(target->openssl-target): Add case for riscv64-linux.
This commit is contained in:
Efraim Flashner 2021-08-01 12:59:36 +03:00
parent b591052866
commit 3a73399ee8
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -358,7 +358,10 @@ (define (target->openssl-target target)
((string-prefix? "powerpc64" target)
"linux-ppc64")
((string-prefix? "powerpc" target)
"linux-ppc")))
"linux-ppc")
((string-prefix? "riscv64" target)
;; linux64-riscv64 isn't recognized until 3.0.0.
"linux-generic64")))
(define-public openssl
(package
@ -404,7 +407,8 @@ (define-public openssl
#~())
;; This test seems to be dependant on kernel features.
;; https://github.com/openssl/openssl/issues/12242
#$@(if (target-arm?)
#$@(if (or (target-arm?)
(target-riscv64?))
#~((replace 'check
(lambda* (#:key tests? test-target #:allow-other-keys)
(when tests?