ccl
ccl copied to clipboard
Clozure Common Lisp
I don't really know what has gone wrong. I installed Clozure CL using the Mac App Store on Mac OS X. Everything went fine with the install. I also installed...
Trac issue #177 (Implement Mouse Copy) didn't show up here on github. I, and I'm sure many others, would like to see this implemented in Clozure CL. There is code...
From #ccl on freenode: ``` (defun bug () (let ((indentation 0)) (macrolet ((with-indent (inc &body body) `(prog2 (incf indentation ,inc) (progn ,@body) (decf indentation ,inc)))) (labels ((foo () (1+ indentation)))...
If I symlink a Common Lisp project to `~/common-lisp` for instance, I can load the .asd with SBCL but not with CCL. It seems that ASDF in CCL does not...
The interface databases that CCL uses are generated by a program called ffigen4. It is a set of patches to gcc-4.0.0 (see http://svn.clozure.com/publicsvn/ffigen4/) These patches should be brought up-to-date. Alternatively,...
**Please** have file name convention. why change previous convention? https://github.com/Clozure/ccl/releases/download/v1.12/darwinx86.tar.gz for 1.12 and https://github.com/Clozure/ccl/releases/download/v1.11.5/ccl-1.11.5-darwinx86.tar.gz for 1.11.5? I know it's nothing for manual installation. but I'm making tool to support ccl....
Forked from https://github.com/Clozure/ccl/issues/308 The CCL Lisp function `signal-semaphore` calls a C function: https://github.com/Clozure/ccl/blob/275105afd94706d95ac955178316074931822c42/lisp-kernel/thread_manager.c#L529-L533 The macro `SEM_RAISE` is platform-dependent and implemented here: https://github.com/Clozure/ccl/blob/275105afd94706d95ac955178316074931822c42/lisp-kernel/threads.h#L119-L142 The Windows `ReleaseSemaphore` has a count argument that...
The following works in CCL but not in SBCL: ```lisp (loop for i below 10 for j by 0 collect (list i j)) ;=> on CCL: ((0 0) (1 0)...
I get an exception while reloading the boot image upon trying to rebuild the core. Bootstrapping binary: lx86cl from April 2019 Commit: current master OS: Debian sid `uname -a`: Linux...
Trying to get the new ffigen5 headers to work under CCL 1.12 I discovered the reason for the failure when adding a modeline to the listener window: an ObjC object...