gnu: guile-static: Disable JIT on GNU/Hurd.
* gnu/packages/make-bootstrap.scm (make-guile-static): Pass "--disable-jit" when targeting GNU/Hurd.master
parent
191c1992b8
commit
da8be73d5b
|
@ -699,8 +699,10 @@ 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"
|
||||
"--enable-mini-gmp"))
|
||||
`(list "LDFLAGS=-ldl" "--enable-mini-gmp"
|
||||
,@(if (hurd-target?)
|
||||
'("--disable-jit")
|
||||
'())))
|
||||
((#:phases phases '%standard-phases)
|
||||
`(modify-phases ,phases
|
||||
|
||||
|
|
Reference in New Issue