mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: guile-lib: Fix cross compilation.
These changes were sent upstream as https://lists.gnu.org/archive/html/guile-devel/2021-02/msg00004.html Without this change, the .go files are built for the host architecture, rather than the target. I noticed this when cross building the guix-build-coordinator (for which guile-lib is an input) to the Hurd. * gnu/packages/guile-xyz.scm (guile-lib)[arguments]: Add 'patch-for-cross-compilation phase. [native-inputs]: Add autoconf, automake and gettext. (guile2.0-lib): Adjust to use alist-replace. (guile2.2-lib): Adjust to use alist-replace.
This commit is contained in:
parent
7a43651738
commit
a0b24d5f8c
1 changed files with 32 additions and 5 deletions
|
@ -116,6 +116,7 @@ (define-module (gnu packages guile-xyz)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system guile)
|
||||
#:use-module (guix utils)
|
||||
#:use-module ((guix build utils) #:select (alist-replace))
|
||||
#:use-module (ice-9 match)
|
||||
#:use-module ((srfi srfi-1) #:select (alist-delete)))
|
||||
|
||||
|
@ -2191,6 +2192,21 @@ (define-public guile-lib
|
|||
'("GUILE_AUTO_COMPILE=0") ; to prevent guild errors
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'patch-for-cross-compilation
|
||||
(lambda _
|
||||
(substitute* "configure.ac"
|
||||
(("GUILE_FLAGS")
|
||||
"GUILE_FLAGS
|
||||
if test \"$cross_compiling\" != no; then
|
||||
GUILE_TARGET=\"--target=$host_alias\"
|
||||
AC_SUBST([GUILE_TARGET])
|
||||
fi
|
||||
"))
|
||||
(substitute* "am/guile.mk"
|
||||
(("guild compile") "guild compile $(GUILE_TARGET)"))
|
||||
(delete-file "configure") ; trigger the bootstrap phase to run
|
||||
; autoreconf
|
||||
#t))
|
||||
(add-before 'configure 'patch-module-dir
|
||||
(lambda _
|
||||
(substitute* "src/Makefile.in"
|
||||
|
@ -2201,7 +2217,10 @@ (define-public guile-lib
|
|||
$(libdir)/guile/@GUILE_EFFECTIVE_VERSION@/site-ccache\n"))
|
||||
#t)))))
|
||||
(native-inputs
|
||||
`(("guile" ,guile-3.0)
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("gettext" ,gettext-minimal)
|
||||
("guile" ,guile-3.0)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(inputs
|
||||
`(("guile" ,guile-3.0)))
|
||||
|
@ -2222,15 +2241,23 @@ (define-public guile2.0-lib
|
|||
(package
|
||||
(inherit guile-lib)
|
||||
(name "guile2.0-lib")
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(inputs `(("guile" ,guile-2.0)))))
|
||||
(native-inputs
|
||||
(alist-replace "guile" (list guile-2.0)
|
||||
(package-native-inputs guile-lib)))
|
||||
(inputs
|
||||
(alist-replace "guile" (list guile-2.0)
|
||||
(package-inputs guile-lib)))))
|
||||
|
||||
(define-public guile2.2-lib
|
||||
(package
|
||||
(inherit guile-lib)
|
||||
(name "guile2.2-lib")
|
||||
(native-inputs `(("pkg-config" ,pkg-config)))
|
||||
(inputs `(("guile" ,guile-2.2)))))
|
||||
(native-inputs
|
||||
(alist-replace "guile" (list guile-2.2)
|
||||
(package-native-inputs guile-lib)))
|
||||
(inputs
|
||||
(alist-replace "guile" (list guile-2.2)
|
||||
(package-inputs guile-lib)))))
|
||||
|
||||
(define-public guile3.0-lib
|
||||
(deprecated-package "guile3.0-lib" guile-lib))
|
||||
|
|
Loading…
Reference in a new issue