Custom Query (1030 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (280 - 282 of 1030)

Ticket Resolution Summary Owner Reporter
#1109 fixed CCL Windows: output from ccl:fasl-concatenate is "not a FASL file" Dave
Description

So I'm trying to get the ASDF test suite running on Windows, and tracked this down as one of the failures for CCL (32-bit and 64-bit). (there were 5 failures out of 47 tests, I haven't looked at the rest yet).

This can be replicated as follows (with files from

https://www.dropbox.com/sh/jc2cqwpkp06dupm/7lgyRUdwZ5/cl/tests/simple

):

[below, substitute ".../'" for your actual path to the test files]:

(lisp-implementation-version)

"Version 1.9-r15765 (WindowsX8664)"

(compile-file ".../try1")

(compile-file ".../try2")

(ccl:fasl-concatenate ".../try.wx64fsl" (list ".../try1.wx64fsl" ".../try2.wx64fsl"))

(load ".../try.wx64fsl")

ERROR: Not a FASL file.

Does anyone recognize what might be going on?

#1110 wontfix CCL on Windows outputs an extra space at the end of commands Francois-Rene Rideau
Description

We found this bug while testing asdf's run-program. This notably matter when invoking CMD.EXE:

? (ccl::make-windows-command-line '("echo" "ok" "1"))
"echo ok 1 " ;; instead of "echo ok 1"

The problem is that due to the time when you shorten the list of string, the test (when strings ...) around printing the space should instead be (when (cdr strings) ...).

PS: you may or may not want to M-x delete-trailing-whitespace and/or have a svn hook that ensures you don't have such whitespace.

#1115 fixed bogus defstruct slot type check error on x8632 R. Matthew Emerson
Description

On 32-bit x86:

(defstruct foo (x 0 :type (unsigned-byte 64)))
(make-foo :x 4177526783)

> Error: The value 4177526783 is not of the expected type (UNSIGNED-BYTE 64).
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.