diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2020-03-23 18:14:45 +0100 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2020-03-24 09:31:43 +0100 |
commit | 47a2306415cf19270cb398590be3d95a92a0e73b (patch) | |
tree | a553cd61c7f38ee1675caa9a50b8265867271e17 /gnu/packages/lisp.scm | |
parent | 0f96fd645402f18bfe0ebeb4159e2daea8cad154 (diff) | |
download | patches-47a2306415cf19270cb398590be3d95a92a0e73b.tar patches-47a2306415cf19270cb398590be3d95a92a0e73b.tar.gz |
gnu: sbcl: Increase maximum heap size to 2Gb.
* gnu/packages/lisp.scm (sbcl)[arguments]: Add the "--dynamic-space-size=2Gb"
option in the build phase.
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 2af0d78da3..a65eb19e0c 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -494,6 +494,7 @@ an interpreter, a compiler, a debugger, and much more.") `("clisp"))) (string-append "--prefix=" (assoc-ref outputs "out")) + "--dynamic-space-size=2Gb" "--with-sb-core-compression" "--with-sb-xref-for-internals"))) (replace 'install |