Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (481 - 483 of 1030)

Ticket Resolution Summary Owner Reporter
#939 fixed Issue with saved application of one command-line-argument Chris Howey
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)

#464 fixed GC problem in standalone Windows executables Gary Byers hrapof
Description

With CCL "Version 1.2-r11583M (LinuxPPC32)" my test

(defun test ()

(format t "Hello, world!"))

(defun make ()

(save-application "tst.exe" :toplevel-function #'test

:error-handler :quiet :prepend-kernel t))

happily prints "Hello, world!" and exits.

But with Windows 32bit CCL fresh from SVN (updated and rebuilt) it prints

Hello, world!

Error: value NIL is not of the expected type CCL::RECURSIVE-LOCK. While executing: CCL::RECURSIVE-LOCK-PTR, in process Initial(0). Type :POP to abort, :R for a list of available restarts. Error: value NIL is not of the expected type CCL::RECURSIVE-LOCK. While executing: CCL::RECURSIVE-LOCK-PTR, in process Initial(0). Type :POP to abort, :R for a list of available restarts. Error: value NIL is not of the expected type CCL::RECURSIVE-LOCK.

.... ....

and then hangs, eating CPU.

Further tinkering showed that my TEST function could be as simple as

(defun test () (ccl:gc))

Called from REPL - everything is OK; called as top-level function in a exe - program busy-waits for something.

Also, CCL prints at start-up

Can't get desired heap address at 0x4000000

May it have something to do with this GC problem? In REPL everything is OK, though: it succefully finishes a hour-long computation.

Windows: XP SP2. CPU: Intel Core Duo.

#517 fixed error in CCL-DIRECTORY or USER-HOMEDIR-PATHNAME Gary Byers hrapof
Description

First of all, there is a thread on lispforum about CCL CGI woes: http://www.lispforum.com/viewtopic.php?f=2&t=342

Not quite related, but in the same vein, when Clozure CL CGI is executed under certain configurations of IIS on Windows, it dies with the following error:

Error: value NIL is not of the expected type (OR STRING PATHNAME STREAM). > While executing: PATHNAME-DIRECTORY, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Skip (possibly crucial) startup function CCL::INIT-LOGICAL-DIRECTORIES. > Type :? for other options. 1 > > Error: Unbound variable: -----------------------------7D9140680DE0 > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Retry getting the value of -----------------------------7D9140680DE0. > Type :? for other options. 2 > > Error: Unbound variable: ------7D9140680DE0 > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Retry getting the value of ------7D9140680DE0. > Type :? for other options. 3 > > Error: Reader error on #, within "position: form-data;": > Reference to unknown package "TENT-DISPOSITION". > While executing: CCL::SIGNAL-READER-ERROR, in process Initial(0). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 4 > > Error: Unbound variable: FORM-DATA > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0). > Type :GO to continue, :POP to abort, :R for a list of available restarts. > If continued: Retry getting the value of FORM-DATA. > Type :? for other options. 5 > "thefile" 5 > > Error: Reader error on #, within "ent-Type: image/pjpe": > Reference to unknown package "CONTENT-TYPE". > While executing: CCL::SIGNAL-READER-ERROR, in process Initial(0). > Type :POP to abort, :R for a list of available restarts. > Type :? for other options. 6 > > Error: Unbound variable: JFIF > While executing: CCL::TOPLEVEL-EVAL, in process Initial(0).

Commenting the contents of INIT-LOGICAL-DIRECTORIES out solves the problem.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.