Custom Query (1030 matches)
Results (625 - 627 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #825 | worksforme | Hunchentoot / usocket installation fails | ||
| Description |
Using dx86cl from SVN, usocket and therefore Hunchentoot installation fails. Note: Using MacPorts or Lispbox CCL, Hunchentoot installs just fine. Specs:
Trace: $ svn co http://svn.clozure.com/publicsvn/openmcl/release/1.6/darwinx86/ccl/ ... $ cd ccl $ wget http://beta.quicklisp.org/quicklisp.lisp ... $ ./dx86cl ? (load "quicklisp") ? (ql:quickload "hunchentoot") ; Loading "hunchentoot" .................................................. [package alexandria.0.dev]........................ .................................................. .................................................. [package bordeaux-threads]........................ [package usocket].. Read error between positions 195 and 295 in /Users/andrew/quicklisp/dists/quicklisp/software/usocket-20110219-svn/vendor/ccl-send.lisp. > Error: Foreign function not found: X86-DARWIN32::|send| > While executing: LOAD-EXTERNAL-FUNCTION, in process listener(1). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. |
|||
| #841 | invalid | Better error stack traces | ||
| Description |
Somewhere in my code is a bug, but it's hard to track down. ? (gen-game) > Error: value . is not of the expected type LIST. > While executing: (:INTERNAL (PRINT-OBJECT (CL-ROGUE:LEVEL T))), in process listener(1). Only by trial and error can I find out which function call is to blame. Please list the calling functions in an error trace, not just "process listener". |
|||
| #854 | fixed | Cannot pass command line arguments to CCL script | ||
| Description |
I'm trying to rewrite a shebang in a CLISP script for CCL. http://www.assembla.com/code/mcandre/subversion/nodes/common-lisp/problem.lisp
#!/bin/bash
#|
exec clisp -q -q $0 $0 ${1+"$@"}
exit
|#
#!/bin/bash
#|
exec ccl -Q -l $0 $0 ${1+"$@"}
exit
|#
But when I try to run my script, CCL interprets the script's arguments as CCL arguments. $ ./problem.lisp --code "Hey" --jeer "Yo" ~/Downloads/problem.png
Unknown option: --code
usage: dx86cl64 <options>
or dx86cl64 <image-name>
where <options> are one or more of:
-h, --help : this text
-V, --version : print (LISP-IMPLEMENTATION-VERSION) and exit
-K, --terminal-encoding : specify character encoding to use for *TERMINAL-IO*
-n, --no-init : suppress loading of init file
-e, --eval : evaluate <form> (may need to quote <form> in shell)
-l, --load : load <file>
-T, --set-lisp-heap-gc-threshold : set lisp-heap-gc-threshold to <n>
-Q, --quiet : if --batch, also suppress printing of heralds, prompts
-R, --heap-reserve <n>: reserve <n> (default: 549755813888)
bytes for heap expansion
-S, --stack-size <n>: set size of initial thread's control stack to <n>
-Z, --thread-stack-size <n>: set default size of first (listener) thread's stacks based on <n>
-b, --batch: exit when EOF on *STANDARD-INPUT*
--no-sigtrap : obscure option for running under GDB
-I, --image-name <image-name>
and <image-name> defaults to dx86cl64.image
|
|||
Note:
See TracQuery
for help on using queries.
