mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: guile@3: Disable JIT on GNU/Hurd.
* gnu/packages/guile.scm (guile-3.0)[arguments]: New field.
This commit is contained in:
parent
1c4268e414
commit
916ec91f23
1 changed files with 7 additions and 0 deletions
|
@ -291,6 +291,13 @@ (define-public guile-3.0
|
|||
(sha256
|
||||
(base32
|
||||
"12lziar4j27j9whqp2n18427q45y9ghq7gdd8lqhmj1k0lr7vi2k"))))
|
||||
(arguments
|
||||
;; XXX: JIT-enabled Guile crashes in obscure ways on GNU/Hurd.
|
||||
(if (hurd-target?)
|
||||
(substitute-keyword-arguments (package-arguments guile-2.2)
|
||||
((#:configure-flags flags ''())
|
||||
`(cons "--disable-jit" ,flags)))
|
||||
(package-arguments guile-2.2)))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "GUILE_LOAD_PATH")
|
||||
|
|
Loading…
Reference in a new issue