Custom Query (1030 matches)
Results (550 - 552 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #939 | fixed | Issue with saved application of one command-line-argument | ||
| Description |
There's an issue where when you use ccl:save-application with ":prepend-kernel t" and try to use command-line-arguments in your app and try to pass only one argument, ccl tries to load it as an image. I will be attaching hello.lisp and a diff patch. ccl-1.7 $ ./fx86cl --load hello.lisp $ ./hello foo Couldn't load lisp heap image from foo: No such file or directory $ ./hello foo bar (./hello foo bar) ccl-1.7 (After patch) $ ./fx86cl --load hello.lisp $ ./hello foo (./hello foo) $ ./hello foo bar (./hello foo bar) |
|||
| #773 | fixed | asdf:find-system undefined after svn 1.6 install | ||
| Description |
installed 1.6 via svn this am. Tried to load a system via asdf. asdf:find-system undefined. This happens with either the system asdf loaded via require or with the asdf included with quicklisp. Not sure if this is a ccl or asdf problem, but everything works fine in ccl-1.5 so I suspect something in 1.6. |
|||
| #1229 | fixed | disassemble and *print-cirlce* | ||
| Description |
shell> ccl --no-init
Welcome to Clozure Common Lisp Version 1.10-dev-r16188M-trunk (LinuxX8632)!
CCL is developed and maintained by Clozure Associates. For more information
about CCL visit http://ccl.clozure.com. To enquire about Clozure's Common Lisp
consulting services e-mail info@clozure.com or visit http://www.clozure.com.
? (defgeneric foo ())
#<STANDARD-GENERIC-FUNCTION FOO #x1824A356>
? (setq *print-circle* t)
T
? (disassemble 'foo)
(recover-fn) ; [0]
(movl (@ (% esp)) (% temp0)) ; [5]
[... a page full of output ...]
L71
(pushl (% temp0)) ; [71]
(movl (@
> Error: Can't use #<error printing CCL::IMMEDIATE #x33> as a hash-table key
> While executing: CCL::PUTHASH, in process listener(1).
> Type :POP to abort, :R for a list of available restarts.
> Type :? for other options.
1 >
Probably related to ticket #1225. |
|||
