gnu: sbcl: Fix startup error on i686-linux.

Fixes <https://issues.guix.gnu.org/69106>.

* gnu/packages/lisp.scm (sbcl)
  [arguments]: Invoke make.sh with smaller dynamic-space-size when building
  for x86-32.

Change-Id: I08e8d2304d883973ab9a1b6a900ea9ee1679fac5
Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Dariqq 2024-07-27 18:58:05 +00:00 committed by Guillaume Le Vaillant
parent 08ec4e8e72
commit 803f9d3038
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -1506,8 +1506,9 @@ be built as a stand-alone REPL interpreter.")
`("clisp"))) `("clisp")))
(string-append "--prefix=" (string-append "--prefix="
(assoc-ref outputs "out")) (assoc-ref outputs "out"))
,@(if (target-ppc32?) ,@(if (or (target-ppc32?)
;; 3072 is too much for this architecture. (target-x86-32?))
;; 3072 is too much for these architectures.
`("--dynamic-space-size=2048") `("--dynamic-space-size=2048")
`("--dynamic-space-size=3072")) `("--dynamic-space-size=3072"))
"--with-sb-core-compression" "--with-sb-core-compression"