[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: guile-static: Remove obsolete workaround.
From: |
guix-commits |
Subject: |
02/03: gnu: guile-static: Remove obsolete workaround. |
Date: |
Sat, 22 May 2021 11:31:54 -0400 (EDT) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit 986e9025a5232155e2b1deb2db15229c302d921a
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Wed May 19 00:47:10 2021 +0200
gnu: guile-static: Remove obsolete workaround.
* gnu/packages/make-bootstrap.scm (make-guile-static)[arguments]: Don't
disable JIT on ARMv7.
---
gnu/packages/make-bootstrap.scm | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/gnu/packages/make-bootstrap.scm b/gnu/packages/make-bootstrap.scm
index f176e56..73e7887 100644
--- a/gnu/packages/make-bootstrap.scm
+++ b/gnu/packages/make-bootstrap.scm
@@ -702,12 +702,7 @@ 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.
-
- ;; 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")))
+ ''("LDFLAGS=-ldl"))
((#:phases phases '%standard-phases)
`(modify-phases ,phases