mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
08ec4e8e72
commit
803f9d3038
1 changed files with 3 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue