diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-11-06 12:32:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-11-06 12:38:03 +0100 |
commit | 7138ba34fa11d3eb2d9e7e44771e698f53415dbc (patch) | |
tree | 6881c85ad74ff374b83720c665a6960e35024db7 /gnu/packages/guile.scm | |
parent | 905443abb742315d89901f3b011980ac796d78a4 (diff) | |
download | guix-7138ba34fa11d3eb2d9e7e44771e698f53415dbc.tar.gz |
gnu: guile@3.0.8: Add patch to address continuation memory leak.
* gnu/packages/patches/guile-continuation-stack-leak.patch: New patch. * 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 fcdf75051c..322debac71 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -399,7 +399,8 @@ without requiring the source code to be rewritten.") (sha256 (base32 "04wagg0zr0sib0w9ly5jm91jplgfigzfgmy8fjdlx07jaq50d9ys")) - (patches (search-patches "guile-cross-compilation.patch")))) + (patches (search-patches "guile-cross-compilation.patch" + "guile-continuation-stack-leak.patch")))) (arguments (substitute-keyword-arguments (package-arguments guile-3.0) ;; Guile 3.0.8 is bit-reproducible when built in parallel, thanks to |