Message ID | bc7a69bf61485bf3000a30ff8bb646b708346c8c.1722106685.git.dariqq@posteo.net |
---|---|
State | New |
Headers | show |
Series | [bug#72325] gnu: sbcl: Fix startup error on i686-linux. | expand |
Patch applied as 803f9d3038d3c3048079c63d51b7b40bff09f17a. Thanks.
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 97f7dd357b..16ce1f25b6 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -1425,8 +1425,9 @@ (define-public sbcl `("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 architecture. `("--dynamic-space-size=2048") `("--dynamic-space-size=3072")) "--with-sb-core-compression"