gnu: sbcl: Update to 2.0.6.
* gnu/packages/lisp.scm (sbcl): Update to 2.0.6.
This commit is contained in:
parent
8ed5d9502d
commit
1ac4959c6a
1 changed files with 8 additions and 7 deletions
|
@ -372,14 +372,14 @@ an interpreter, a compiler, a debugger, and much more.")
|
||||||
(define-public sbcl
|
(define-public sbcl
|
||||||
(package
|
(package
|
||||||
(name "sbcl")
|
(name "sbcl")
|
||||||
(version "2.0.5")
|
(version "2.0.6")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-"
|
(uri (string-append "mirror://sourceforge/sbcl/sbcl/" version "/sbcl-"
|
||||||
version "-source.tar.bz2"))
|
version "-source.tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1jz26w1i3riv032aa35vww4cv7cjk2ww7dp70c7wk4r8s66zhl00"))))
|
(base32 "1bnxmmq2yvwj6hb4d96v3k82bcmwhfqx5jixzr14zk4p3m6dd4px"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -397,12 +397,13 @@ an interpreter, a compiler, a debugger, and much more.")
|
||||||
;; ABCL and ECL (as well as CCL, CMUCL, CLISP and SBCL itself)
|
;; ABCL and ECL (as well as CCL, CMUCL, CLISP and SBCL itself)
|
||||||
;;
|
;;
|
||||||
;; CCL is not bootstrappable so it won't do. CLISP 2.49 seems to work.
|
;; CCL is not bootstrappable so it won't do. CLISP 2.49 seems to work.
|
||||||
;; ECL too. ECL builds SBCL about 20% slower than CLISP. As of
|
;; ECL too. As of 2020-07-01, ECL was last updated in 2020 while CLISP
|
||||||
;; 2019-09-05, ECL was last updated in 2020 while CLISP was last updated
|
;; was last updated in 2010, and both take about the same time to build SBCL.
|
||||||
;; in 2010.
|
|
||||||
;;
|
;;
|
||||||
;; For now we stick to CLISP for all systems. We keep the `match' here to
|
;; For now we stick to CLISP for all systems. We keep the `match' here
|
||||||
;; make it easier to change the host compiler for various architectures.
|
;; to make it easier to change the host compiler for various
|
||||||
|
;; architectures. Consider switching to ECL if it gets faster than CLISP
|
||||||
|
;; (maybe post 2020 release).
|
||||||
`(,@(match (%current-system)
|
`(,@(match (%current-system)
|
||||||
((or "x86_64-linux" "i686-linux")
|
((or "x86_64-linux" "i686-linux")
|
||||||
`(("clisp" ,clisp)))
|
`(("clisp" ,clisp)))
|
||||||
|
|
Reference in a new issue