Fixed in fda17c20a3d088fccab1671c8881bd217d83d5f6 on the stable-2.0
branch, which will become Guile 2.0.12.
Thanks,
Mark
tantalum writes:
> with guile version 2.1.0.89-c5ea7 on an x86_64 GNU/Linux system
> and the following code
> (use-modules (srfi srfi-4) (rnrs bytevectors))
> (define a (make-f32vector 2 0))
> (define b (bytevector-copy a))
> (write (list a b))
>
> "b" turns out to be an f32vector with le
Thomas Klausner writes:
> test does not generally support '==' as comparison operator.
>
> It's a bash(1) feature; not even GNU coreutils test(1) supports it.
> Use '=' instead.
Fixed in 03242f398f3520b1b27caf5885c8d5600094f944.
> NetBSD provides newlocale and strcoll_l, but not uselocale.
Fixed in ae6f77ddfaf8e752589d9050c9e517cb1c52cbf0 on the stable-2.0
branch.
Mark
See the following session with Guile 2.0.11:
--8<---cut here---start->8---
scheme@(guile-user)> ,use (rnrs bytevectors)
scheme@(guile-user)> (define bv (make-bytevector 8))
scheme@(guile-user)> (bytevector-fill! bv 255)
ERROR: In procedure bytevector-fill!:
ERRO
Mark H. Weaver wrote:
> Frank Terbeck writes:
[...]
>> Mark Weaver on IRC thought it would be a good idea to add portable
>> access to the contents of ‘errno’ (however it's actually implemented) to
>> Guile's FFI. And now the idea has entered the bug tracker. :)
>
> Indeed, thanks for filing this
Forwarded from guile-user:
> Date: Mon, 10 Nov 2014 12:44:55 +0200
> From: Eli Zaretskii
> Subject: Re: Unable to compile Guile
> To: jeremy chen
> Cc: guile-u...@gnu.org
>
>> Date: Sun, 9 Nov 2014 23:30:07 -0500
>> From: jeremy chen
>>
>> Hi, I am trying to compile guile on windows with Ming
Frank Terbeck writes:
> When accessing POSIX functions from a system's libc via Guile's dynamic
> FFI, you commonly want to access the ‘errno’ variable to be able to
> produce useful diagnostic messages.
>
> Currently there's no such access built-in.
>
> Mark Weaver on IRC thought it would be a g