mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: chez-scheme-for-racket: Fix building on riscv64-linux.
* gnu/packages/chez.scm (target-chez-arch): When building for riscv64-linux return #f instead of the desired string, which isn't supported everywhere yet. Change-Id: Ie1b076ad4845129c5b98c3ae01f98a86784c13ad
This commit is contained in:
parent
7b0df27906
commit
0c96f7932d
1 changed files with 3 additions and 2 deletions
|
@ -130,8 +130,9 @@ (define* (target-chez-arch #:optional (system
|
||||||
#f)
|
#f)
|
||||||
((target-ppc32? system)
|
((target-ppc32? system)
|
||||||
"ppc32")
|
"ppc32")
|
||||||
((target-riscv64? system)
|
;; This is apparently not ready in chez-scheme-for-racket.
|
||||||
"rv64")
|
;((target-riscv64? system)
|
||||||
|
; "rv64")
|
||||||
((string-prefix? "loongarch64-" system)
|
((string-prefix? "loongarch64-" system)
|
||||||
"la64")
|
"la64")
|
||||||
(else
|
(else
|
||||||
|
|
Loading…
Reference in a new issue