mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
gnu: guile-static: Disable JIT on ARMv7.
* gnu/packages/make-bootstrap.scm (make-guile-static): Pass "--disable-jit" when 'target-arm32?' is true.
This commit is contained in:
@@ -706,7 +706,12 @@ for `sh' in $PATH, and without nscd, and with static NSS modules."
|
||||
;; When `configure' checks for ltdl availability, it
|
||||
;; doesn't try to link using libtool, and thus fails
|
||||
;; because of a missing -ldl. Work around that.
|
||||
''("LDFLAGS=-ldl"))
|
||||
|
||||
;; XXX: On ARMv7, disable JIT: it causes crashes with 3.0.2,
|
||||
;; possibly related to <https://bugs.gnu.org/40737>.
|
||||
(if (target-arm32?)
|
||||
''("LDFLAGS=-ldl" "--disable-jit")
|
||||
''("LDFLAGS=-ldl")))
|
||||
((#:phases phases '%standard-phases)
|
||||
`(modify-phases ,phases
|
||||
|
||||
|
||||
Reference in New Issue
Block a user