aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: d6ea6943261fcae51c095ad39fe59140fc62de22 (about) (plain)
1
2
3
4
Normally a ChangeLog is generated at "make dist" time and available in
source tarballs.

If not, see the Git commit log at <http://git.sv.gnu.org/cgit/guix.git/>.
ss='ctrl'>
Diffstat
-rw-r--r--gnu/packages/lisp.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index 4f2a95abb9..090b91610e 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -1506,8 +1506,9 @@ be built as a stand-alone REPL interpreter.")
`("clisp")))
(string-append "--prefix="
(assoc-ref outputs "out"))
- ,@(if (target-ppc32?)
- ;; 3072 is too much for this architecture.
+ ,@(if (or (target-ppc32?)
+ (target-x86-32?))
+ ;; 3072 is too much for these architectures.
`("--dynamic-space-size=2048")
`("--dynamic-space-size=3072"))
"--with-sb-core-compression"