Building Guile 1.9.2 on i686-pc-linux-gnu

2009-08-15 Thread Mike Gran
On Sat, 2009-08-15 at 15:06 +0200, Ludovic Courtès wrote: > We are pleased to announce GNU Guile release 1.9.2. Sweet. Result from a machine. i686-pc-linux-gnu running Redhat 10 and gcc 4.3.2. As was to be expected, it all turned out OK. Scheme compilation had two sets of warnings -

GNU Guile 1.9.2 problems with guile-lib

2009-08-15 Thread Barry Fishman
Although guile-lib git master works with Guile 1.9.1, there seems to be a problem with Guile 1.9.2. Seen from: Ubuntu Jaunty x86_64 $ guile Guile Scheme interpreter 0.5 on Guile 1.9.2 Copyright (C) 2001-2008 Free Software Foundation, Inc. Enter `,help' for help. scheme@(guile-user)> (use-modules

Re: guile.m4

2009-08-15 Thread Ludovic Courtès
Hi, Mike Gran writes: > guile.m4's serial number should be bumped for releases if it has changed. AFAICS there hasn't been any change recently. Did you spot something? Thanks, Ludo'.

GNU Guile 1.9.2 released (alpha)

2009-08-15 Thread Ludovic Courtès
We are pleased to announce GNU Guile release 1.9.2. This is the next pre-release of what will eventually become the 2.0 release series. It provides many new noteworthy features, most notably the addition of a compiler and virtual machine. We encourage you to test them and provide feedback to `gu

`SCM_MAKE_CHAR ()' signedness issue

2009-08-15 Thread Ludovic Courtès
Hello, We still have troubles with the `(scm_t_int32) (x) < 0' test in `SCM_MAKE_CHAR ()': --8<---cut here---start->8--- l...@gcc54:~/guile-1.9.1/+build$ cat ,,t.c int foo (unsigned char x) { return (((int)x) < 0 ? 1 : -1); } l...@gcc54:~/guile-1.9.1/+build$

simplex.scm fails after recent changes in master

2009-08-15 Thread Juhani Viheräkoski
Hi, This testcase now seems to run forever when compiled but works with the interpreter. It used to work when I last tried, that was maybe a week ago. -- Juhani(define (run-bench name count ok? run) (let loop ((i count) (result '(undefined))) (if (< 0 i) (loop (- i 1) (run))