Taylan Ulrich Bayirli/Kammer wrote:
> Running numbers.test
> ;;; ("#i1@-0" 1.0 -0.0)
> FAIL: numbers.test: string->number: valid complex number strings
>
> The issue seems to be that (imag-part #i1@-0) => 0.0 instead of -0.0,
Taylan and I did some more debugging on IRC, and we determined that th
Taylan Ulrich Bayirli/Kammer writes:
> The next roadblock I hit is that when I run gdb on the guile
> executable, it doesn't seem to realize that the libguile dylib is
> loaded, so still lacks the debug symbols from it. (When I enter "info
> sharedlibrary" it says "No shared libraries loaded at
Mark H Weaver writes:
> Are you passing any optimization flags? There are some, such as -Ofast,
> -ffast-math, -funsafe-math-optimizations, -fno-signed-zeros,
> -fassociative-math, and maybe some others that might result in this bug.
I don't pass any flags to ./configure or make, other than --p
Taylan Ulrich Bayirli/Kammer writes:
> Mark H Weaver writes:
>
>> What does (sin -0.0) evaluate to?
>>
>> My first guess is that at the C level, sin(-0.0) => 0.0 on your system,
>> although IEEE 754 and C11 (F.10.1.6) specify that sin(-0.0) => -0.0.
>>
>> If my guess is incorrect, then please pu
Mark H Weaver writes:
> What does (sin -0.0) evaluate to?
>
> My first guess is that at the C level, sin(-0.0) => 0.0 on your system,
> although IEEE 754 and C11 (F.10.1.6) specify that sin(-0.0) => -0.0.
>
> If my guess is incorrect, then please put a breakpoint in
> 'scm_c_make_polar' and see w
taylanbayi...@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
> By the way, after installing GCC 4.8 from MacPorts and setting the CC
> environment variable to use it (executable "gcc-mp-4.8"), the above
> issues are resolved, but I get the following test failure now:
>
> Running numbers.test
>
taylanbayi...@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
> taylanbayi...@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
>
>> On OS X 10.9 with Xcode 5.1, make fails unless -O0 is used; the output
>> of ./configure && make during the failure is here:
>>
>> http://sprunge.us/PLGI
>>
>>
taylanbayi...@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
> taylanbayi...@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
>
>> Hi,
>>
>> On OS X 10.9 with Xcode 5.1, make fails unless -O0 is used; the output
>> of ./configure && make during the failure is here:
>>
>> http://sprunge.us/PL
taylanbayi...@gmail.com (Taylan Ulrich "Bayırlı/Kammer") writes:
> Hi,
>
> On OS X 10.9 with Xcode 5.1, make fails unless -O0 is used; the output
> of ./configure && make during the failure is here:
>
> http://sprunge.us/PLGI
>
> After a successful build with -O0, there are two failures during mak