diff options
author | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-22 09:55:38 +0200 |
---|---|---|
committer | Guillaume Le Vaillant <glv@posteo.net> | 2024-08-22 09:55:38 +0200 |
commit | 2c7119b43bd44ee812ceaa2351bff9a8b623a920 (patch) | |
tree | e436dbdc0d05f02028a31fa1b991876ffeb62175 /gnu/packages/lisp.scm | |
parent | a1d367d6ee8c1783ef94cebbc5f2ae3b7a08078d (diff) | |
parent | 9cdad6aeb6b69a8fd0fd37858347d5894bf51ed2 (diff) | |
download | guix-2c7119b43bd44ee812ceaa2351bff9a8b623a920.tar guix-2c7119b43bd44ee812ceaa2351bff9a8b623a920.tar.gz |
Merge branch 'lisp-team'
Change-Id: Ib01e9e7efbd59b4a9e21a7c7b46a8159b43e2d79
Diffstat (limited to 'gnu/packages/lisp.scm')
-rw-r--r-- | gnu/packages/lisp.scm | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 543ceb9953..4f2e61733d 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -429,8 +429,8 @@ interface.") "--reproducible-build" "--package-path=/" (string-append "--bin-path=" out "/bin") - (string-append "--lib-path=" out "/lib") - (string-append "--share-path=" out "/share"))))) + (string-append "--lib-path=" out "/lib/clasp") + (string-append "--share-path=" out "/share/clasp"))))) (replace 'build (lambda* _ (invoke "ninja" "-C" "build"))) @@ -1353,14 +1353,14 @@ be built as a stand-alone REPL interpreter.") (define-public sbcl (package (name "sbcl") - (version "2.4.5") + (version "2.4.7") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-" version "-source.tar.bz2")) (sha256 - (base32 "1lbvb9rzlkl3h8s75i2js4dnmgxmvs41jxjb5dj0f603r688xxjd")) + (base32 "1lhia29g0byj7w3akd99sjb8kxp95adwqk2kbl0wsnk30cjlsm38")) (modules '((guix build utils))) (snippet '(begin @@ -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" |