ccl
ccl copied to clipboard
Clozure Common Lisp
When trying to load a file or read from a file saved in UTF-8 starting with UTF-8 BOM 0xEF 0xBB 0xBF, first a symbol is read whose name is a...
Note from recent AMD software optimization manual (e.g., https://developer.amd.com/wp-content/resources/56305_SOG_3.00_PUB.pdf) 2.8.1.3.2 REP RET For prior processor families, such as Family 10h and 12h, a three-byte return-immediate RET instruction had been recommended...
``` > make gcc -g -Wl,--export-dynamic "-Wl,--hash-style=sysv" -o ../../armcl pad.o arm-spentry.o pmcl-kernel.o gc-common.o arm-gc.o bits.o arm-exceptions.o image.o thread_manager.o lisp-debug.o m emory.o unix-calls.o arm-asmutils.o imports.o lispdcmd.o plprint.o plsym.o albt.o arm_print.o -Wl,--no-as-needed...
``` /mingw64/bin/x86_64-w64-mingw32-gcc -include ../platform-win64.h -c ../pmcl-kernel.c -DWIN_64 -DWINDOWS -D_REENTRANT -DX86 -DX8664 -D_GNU_SOURCE -DHAVE_TLS -DEMUTLS -DTCR_IN_GPR -DVC_REVISION="unknown" -g -O2 -Wno-format -m64 -o pmcl-kernel.o make: *** [Makefile:97: pmcl-kernel.o] Error 1 ``` seems...
I tested with: `Clozure Common Lisp Version 1.12 (v1.12) WindowsX8664` and the following program and test cases: ``` (defvar *test-cases* ;;(( ) ) '((("~13,2,9,'?,'_@F" 1) "?????????????") (("~13,2,9,'F,'_@F" 1) "FFFFFFFFFFFFF") (("~13,2,9,'Q,'_@F"...
To work with unusual directory names, the last line should read exec "${CCL_DEFAULT_DIRECTORY}/${OPENMCL_KERNEL}" "$@" --- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/75130382-bug-in-scripts-ccl-and-scripts-ccl64?utm_campaign=plugin&utm_content=tracker%2F27935804&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F27935804&utm_medium=issues&utm_source=github).
On Clozure Common Lisp Version 1.12 (v1.12) LinuxX8664. After defining a symbol macro with COMPILE-FILE + LOAD, source location is not available. ``` (define-symbol-macro sss 7) (ccl:find-definition-sources 'sss) => NIL...
When proxychains is present, ccl will terminate with: ``` [proxychains] DLL init: proxychains-ng 4.15 fish: Job 1, 'ccl' terminated by signal SIGABRT (Abort) ``` Here's a video demonstrate how to...
Also, the windows ccl .zip file has a problem when extracting. 7-zip says it can't open 79 files (mostly documentation and header files, the 7-zip error dialog won't let me...
If I understand correctly, the semaphore count can be accessed using a variation of the following: ```lisp ? (defvar *semaphore* (make-semaphore)) *SEMAPHORE* ? (ccl::semaphore-value *semaphore*) # ? (ccl::%get-unsigned-long-long *) 0...