diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-03-01 10:23:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-03-01 12:33:06 +0100 |
commit | e9b7adde0ddc8489e63d843a8bd8b76dc6bd6ead (patch) | |
tree | ef52fbf1dc6d45fc41c10809750c14c810c97e7e /gnu/packages/guile.scm | |
parent | a85930230233106658a4ffe53e71fe79cc1e8634 (diff) | |
download | guix-e9b7adde0ddc8489e63d843a8bd8b76dc6bd6ead.tar.gz |
gnu: guile@3.0.8: Get correct type sizes when cross-compiling.
This works around <https://issues.guix.gnu.org/54198>, whereby cross-compilation from (say) x86_64-linux to i586-pc-gnu would produce a broken Guile that crashes at startup. * gnu/packages/patches/guile-cross-compilation.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/guile.scm (guile-3.0-latest)[source]: Use it.
Diffstat (limited to 'gnu/packages/guile.scm')
-rw-r--r-- | gnu/packages/guile.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index f74a389da5..fc969f3bb5 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -398,7 +398,8 @@ without requiring the source code to be rewritten.") version ".tar.xz")) (sha256 (base32 - "04wagg0zr0sib0w9ly5jm91jplgfigzfgmy8fjdlx07jaq50d9ys")))) + "04wagg0zr0sib0w9ly5jm91jplgfigzfgmy8fjdlx07jaq50d9ys")) + (patches (search-patches "guile-cross-compilation.patch")))) (arguments (substitute-keyword-arguments (package-arguments guile-3.0) ;; Guile 3.0.8 is bit-reproducible when built in parallel, thanks to |