Replies: 1 comment 1 reply
-
FYI: Maxima compiled with Clozure CL 1.12.2 runs our main testsuite with no errors. Thanks for the work on the new Clozure version! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is Clozure CL 1.12.2.
There are two ways to obtain a copy of the release.
If you are not interested in tracking or updating CCL sources at all, you may download an archive file of the form
ccl-1.12.2-platform.gz
. This archive will contain everything you need to run CCL (including complete source code and binaries), but not a copy of the Git repository.If, on the other hand, you would like to be able to pull updates from Git, follow these steps:
git clone https://github.com/Clozure/ccl.git
)For example, to get a copy of CCL for Linux/x86, you would say:
After unpacking the binaries, you can rebuild CCL by evaluating
(rebuild-ccl :full t)
as usual.Unfortunately, on Windows and recent macOS versions,
(rebuild-ccl :full t)
will not work. On those systems, you must build the lisp kernel binary (a program written in C and assembly language) separately. To do this, use the following commands:When that is done, start the lisp and evaluate
(rebuild-ccl :clean t)
. This does the same thing as:full t
, except it will not attempt to rebuild the lisp kernel for you.Binaries were built on the following systems:
This discussion was created from the release Clozure CL 1.12.2.
Beta Was this translation helpful? Give feedback.
All reactions