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
-
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
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'.
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
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$
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))