lvaruzza / cl-randist

Random number generation for common lisp
http://code.google.com/p/cl-randist/
20 stars 10 forks source link

Some systems failed to build for Quicklisp dist #11

Open quicklisp opened 3 years ago

quicklisp commented 3 years ago

Building with SBCL 2.1.6 / ASDF 3.3.1 for quicklisp dist creation.

Trying to build commit id 413204fa2b9e7f0431c0bc45367304af937494ff

cl-randist fails to build with the following error:

Unhandled TYPE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING {1001A18103}>: The value * is not of type LIST

Full log here

rpgoldman commented 3 years ago

As of SBCL 2.1.3 and ASDF 3.3.5 building gives a couple of style warnings, but no errors, for the same commit hash.

I guess I won't be upgrading my SBCL for a little! 😉

rpgoldman commented 3 years ago

P.S. Builds successfully on Allegro 10.1, too.

quicklisp commented 3 years ago

I believe the true issue is something like (coerce some-list 'array) where it should be (coerce some-list 'vector).

lvaruzza commented 3 years ago

I just tested the distribution using sbcl from debian and the latest version in github.

Leonardo Varuzza, PhD

On Mon, Jul 5, 2021 at 9:16 AM Zach Beane @.***> wrote:

I believe the true issue is something like (coerce some-list 'array) where it should be (coerce some-list 'vector).

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/lvaruzza/cl-randist/issues/11#issuecomment-874105953, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAAMNCIF6M6K6LDPQOPHWTTWGWDXANCNFSM47XRFS5A .

quicklisp commented 3 years ago

The problem occurs in more recent versions of SBCL (which are easy to build and install).

On Mon, Jul 5, 2021 at 2:28 PM Leonardo Varuzza @.***> wrote:

I just tested the distribution using sbcl from debian and the latest version in github.

Leonardo Varuzza, PhD

On Mon, Jul 5, 2021 at 9:16 AM Zach Beane @.***> wrote:

I believe the true issue is something like (coerce some-list 'array) where it should be (coerce some-list 'vector).

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub <https://github.com/lvaruzza/cl-randist/issues/11#issuecomment-874105953 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AAAAMNCIF6M6K6LDPQOPHWTTWGWDXANCNFSM47XRFS5A

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/lvaruzza/cl-randist/issues/11#issuecomment-874273116, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACPNLJJPWIH7EJPXXH2MELTWH2S7ANCNFSM47XRFS5A .

lvaruzza commented 3 years ago

what is the exactly version?

On Mon, Jul 5, 2021, 16:56 Zach Beane @.***> wrote:

The problem occurs in more recent versions of SBCL (which are easy to build and install).

On Mon, Jul 5, 2021 at 2:28 PM Leonardo Varuzza @.***> wrote:

I just tested the distribution using sbcl from debian and the latest version in github.

Leonardo Varuzza, PhD

On Mon, Jul 5, 2021 at 9:16 AM Zach Beane @.***> wrote:

I believe the true issue is something like (coerce some-list 'array) where it should be (coerce some-list 'vector).

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub < https://github.com/lvaruzza/cl-randist/issues/11#issuecomment-874105953 , or unsubscribe <

https://github.com/notifications/unsubscribe-auth/AAAAMNCIF6M6K6LDPQOPHWTTWGWDXANCNFSM47XRFS5A

.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub <https://github.com/lvaruzza/cl-randist/issues/11#issuecomment-874273116 , or unsubscribe < https://github.com/notifications/unsubscribe-auth/AACPNLJJPWIH7EJPXXH2MELTWH2S7ANCNFSM47XRFS5A

.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/lvaruzza/cl-randist/issues/11#issuecomment-874324678, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAAAMNBVHEQ2FS6L5LBVFCTTWIL7LANCNFSM47XRFS5A .

quicklisp commented 3 years ago

SBCL 2.1.6 exhibits the problem, but I believe it's been an issue for several versions before that as well.