[Chicken-users] Setting options for make test

2011-02-15 Thread Sven Hartrumpf
Hi all. I am building chicken (Version 4.6.5, linux-unix-gnu-x86-64 [64bit manyargs dload], git) with special settings of C_COMPILER and C_COMPILER_OPTIMIZATION_OPTIONS when invoking make. For the make targets default and install, this works perfectly, but for the make target test these variables

Re: [Chicken-users] Setting options for make test

2011-02-15 Thread Felix
From: Sven Hartrumpf hartru...@gmx.net Subject: [Chicken-users] Setting options for make test Date: Tue, 15 Feb 2011 09:10:28 +0100 (CET) Hi all. I am building chicken (Version 4.6.5, linux-unix-gnu-x86-64 [64bit manyargs dload], git) with special settings of C_COMPILER and

[Chicken-users] Setting options for make test

2011-02-15 Thread Sven Hartrumpf
Hi Felix. Tue, 15 Feb 2011 12:32:45 +0100 (CET), felix wrote: I am building chicken (Version 4.6.5, linux-unix-gnu-x86-64 [64bit manyargs dload], git) with special settings of C_COMPILER and C_COMPILER_OPTIMIZATION_OPTIONS when invoking make. For the make targets default and install, this

Re: [Chicken-users] Setting options for make test

2011-02-15 Thread Felix
From: Sven Hartrumpf hartru...@gmx.net Subject: [Chicken-users] Setting options for make test Date: Tue, 15 Feb 2011 09:10:28 +0100 (CET) Hi all. I am building chicken (Version 4.6.5, linux-unix-gnu-x86-64 [64bit manyargs dload], git) with special settings of C_COMPILER and

Re: [Chicken-users] matchable 3.0 and SRFI-9 records

2011-02-15 Thread Alex Shinn
On Sun, Feb 13, 2011 at 6:52 PM, Ivan Raikov ivan.g.rai...@gmail.com wrote:   It appears that the following pattern no longer works with matchable 3.0 (Chicken 4.6.5): Sorry about that, stupid copypaste error, fixed now. -- Alex ___ Chicken-users

Re: [Chicken-users] Setting options for make test

2011-02-15 Thread Sven Hartrumpf
Tue, 15 Feb 2011 14:32:02 +0100 (CET), felix wrote: These settings should go into chicken-config.h and thus be respected by csc. Do you override these variables in your invocation of make ... check? Yes. Regenerating chicken-config.h solved my problem. Thanks, Felix. Sven

Re: [Chicken-users] matchable 3.0 and SRFI-9 records

2011-02-15 Thread Alex Shinn
On Sun, Feb 13, 2011 at 9:52 PM, Felix fe...@call-with-current-continuation.org wrote: Talking about matchable: I always wondered whether this should work:  (match '(...)    (('...) 'yep)) This is: (match (quote ...) ((quote ...) 'yep)) so the pattern is trying to match a list and

Re: [Chicken-users] Chicken Scheme 3 extension dependency problem

2011-02-15 Thread Paul Nelson
I'm not sure. I'm very new to Chicken Scheme. All I can assert is that when I tried to use chicken-setup from a Chicken Scheme 3 instance to install an Egg (e.g. stream-parser or scheme-dissect), it fails due to a broken dependency on simple-logging. When I reviewed the available Eggs for Scheme

Re: [Chicken-users] Chicken Scheme 3 extension dependency problem

2011-02-15 Thread Jim Ursetto
I looked into it some more and it appears that simple-logging is indeed present in the chicken 3 repository, but for some reason, chicken-setup claims it cannot be found. I have never seen this before, any ideas anyone? In the meantime you might like to try qwiki with chicken 4, which is what

Re: [Chicken-users] matchable 3.0 and SRFI-9 records

2011-02-15 Thread Ivan Raikov
Thanks for restoring my sanity ;-) This was breaking a substantial amount of code I am working on. -Ivan Alex Shinn alexsh...@gmail.com writes: On Sun, Feb 13, 2011 at 6:52 PM, Ivan Raikov ivan.g.rai...@gmail.com wrote:   It appears that the following pattern no longer works with

[Chicken-users] display with cyclic structures or just limit on characters?

2011-02-15 Thread Patrick Li
Hello everyone, I'm just debugging some software with display statements, except that I am using some cyclic data structures. If I use (display my-data-structure) on a cyclic structure, it just floods the screen and crashes the program. Is there an existing cycle-detecting pretty-printer for