Custom Query (1030 matches)
Results (469 - 471 of 1030)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #604 | fixed | two .lisp files apparently marked executable in svn | ||
| Description |
when checked out per the instructions at: http://ccl.clozure.com/manual/chapter2.2.html#obtaining-via-svn On a debian machine, the files:
ccl/library/x86-win64-syscalls.lisp Are marked as excutable in the debian filesystem. I believe this to be an error, and I'm assuming this is because they are incorrectly tagged by svn as executables in the repository. I have not looked on other unix-like OS (darwin?), but I assume the same error occurs. |
|||
| #605 | wontfix | Saving runtime options in CCL:SAVE-APPLICATION | ||
| Description |
SBCL has an option when you dump an executable image to have the new image start up with the same amount of reserved heap space, stack space, etc, as the current image. Also, using this option means that the all command-line arguments are passed directly to the executable image. Currently, the CCL kernel handles some command-line arguments unconditionally, which is a nuisance for producing completely stand-alone applications. Having this option would both enable complete control of command-line argument handling, and would let a saved application start up with a specified amount of heap space, stack space, etc, rather than the defaults. Example: ; Currently (ccl:save-application "frob-text"
... $ ./frob-text document.txt Couldn't load lisp heap image from document.txt ; Ideally (ccl:save-application "frob-text"
... $ ./frob-text document.txt <frobs document.txt> |
|||
| #606 | fixed | typo in ffi.xml | ||
| Description |
12.3.2.7. %null-ptr [Macro] Description Equivalent to (%ptr-to-int 0). should be (%int-to-ptr 0) |
|||
