Custom Query (1030 matches)
Results (538 - 540 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #693 | invalid | Clozure CL64.app does not start on a new MacBookPro | ||
| Description |
Clozure C64.app from the ftp://clozure.com/pub/release/1.5/ccl-1.5-darwinx86.dmg distribution does not start properly: I get the following message in an AltConsole window: > Error: Objective-C runtime exception: > *** -[NSKeyedUnarchiver initForReadingWithData:]: non-keyed archive cannot be decoded by NSKeyedUnarchiver > While executing: (:INTERNAL GUI::|+[LispApplicationDelegate initialize]|), in process Initial(0). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 1 > The same problem happens when I run dx86cl64 in a terminal and try to build the IDE by hand (require :cocoa-application) - I eventually get: ;Compiling "/Users/jacek/lisp/ccl-1.5/cocoa-ide/xinspector.lisp"... > Error: Objective-C runtime exception: > *** -[NSKeyedUnarchiver initForReadingWithData:]: non-keyed archive cannot be decoded by NSKeyedUnarchiver > While executing: #<Anonymous Function #x30200069218F>, in process Initial(0). ;;; ;;; #<PROCESS Initial(0) [Active] #x3020000B752D> requires access to Shared Terminal Input ;;; Type (:y 0) to yield control to this thread. ;;; ;Loading #P"/Users/jacek/lisp/ccl-1.5/cocoa-ide/fasls/xinspector.dx64fsl"... Version: Clozure CL64-36452 MacBookPro 6,2 with IntelCore i7. My old version of CCL (early 1.4) works fine. |
|||
| #694 | duplicate | :ccl-1.5 feature missing from *features* | ||
| Description |
The latest 1.5 download doesn't have the :ccl-1.5 feature in *features*. Features for :ccl-1.2, :ccl-1.3 and :ccl-1.4 are present. |
|||
| #696 | fixed | ccl and slime don't play nicely together (windows 64bit) | ||
| Description |
ccl often hangs when I TAB-complete something in the slime repl. I start the swank server doing (push #p"path/to/slime/" asdf:*central-registry*) ;in my init file (require :swank) ; these two from the repl in the cmd window (swank:create-server) in the slime repl, I can reliably reproduce the bug typing "swank" and then hitting Tab and Backspace at a fast pace. The same happens when I run ccl as an inferior lisp in emacs. In both cases, i run ccl with -K utf-8. Note that it's not slime that hangs, but ccl. When this bug occurs, I can't type on the repl in the "terminal" anymore. I have to close the terminal or hit Ctrl+Break loads of times to kill it. For what is worth, my slime setup follows: ;;;;;;;;;;;;;;;;;;;
;;; Slime stuff ;;;
;;;;;;;;;;;;;;;;;;;
(add-to-list 'load-path (concat *my-site-lisp-directory* "slime/")) ;; load-path for slime
(add-to-list 'load-path (concat *my-site-lisp-directory* "slime/contrib/"))
(require 'slime) ;;
(setq slime-multiprocessing t)
(setq slime-autodoc-use-multiline-p t)
(setq slime-truncate-lines nil)
(set-language-environment "UTF-8")
(setq slime-net-coding-system 'utf-8-unix)
(slime-setup '(slime-fancy slime-asdf))
(setq slime-lisp-implementations
'((clisp ("c:/Program Files (x86)/clisp-2.48/clisp.exe" "-K" "full"))
(ccl64 ("C:/Users/ale/MySw/ccl/wx86cl64.exe" "-K" "utf-8"))
(ccl ("C:/Users/ale/MySw/ccl/wx86cl.exe" "-K" "utf-8"))
(sbcl ("sbcl"))))
|
|||
