gnu: guile-next: Disable JIT on armhf-linux.
* gnu/packages/guile.scm (guile-3.0)[arguments]: New field.master
parent
f79313b387
commit
6e6aab0b6a
|
@ -296,6 +296,14 @@ without requiring the source code to be rewritten.")
|
|||
(sha256
|
||||
(base32
|
||||
"0x8ca6q1qdmk29lh12gj6ngvgn7kp79w42rxfgwrpxm9jmjqs4y9"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments guile-2.2)
|
||||
;; XXX: On ARMv7, work around <https://bugs.gnu.org/39208> by disabling
|
||||
;; JIT.
|
||||
((#:configure-flags flags '())
|
||||
(if (target-arm32?)
|
||||
`(cons "--disable-jit" ,flags)
|
||||
flags))))
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "GUILE_LOAD_PATH")
|
||||
|
|
Reference in New Issue