Forum: Ruby Ruby 1.8.6 : 0.5 == 5.0 ???

Posted by Thomas Sevestre (Guest)
on 2010-09-01 14:45
(Received via mailing list)
Hello,

I have a strange problem on one of my servers.
I just installed ruby 1.8.6 from source :

/tmp/ruby-1.8.6-p383$uname -a
Linux prod2-ctxctrl 2.6.32-24-generic-pae #39-Ubuntu SMP Wed Jul 28
07:39:26 UTC 2010 i686 GNU/Linux

/tmp/ruby-1.8.6-p383$ruby --version
ruby 1.8.6 (2009-08-04 patchlevel 383) [i686-linux]

Something is broken with floats, here are a few tests :

/tmp/ruby-1.8.6-p383$ruby -e "puts 0.5"
5.0
/tmp/ruby-1.8.6-p383$ruby -e "puts 0.05"
5.0
/tmp/ruby-1.8.6-p383$ruby -e "puts 0.5 == 5.0"
true
/tmp/ruby-1.8.6-p383$ruby -e "puts 1.0 / 2"
0.5

Do you have any idea of what is going on?

Thanks
Thomas
Posted by Peter Hickman (Guest)
on 2010-09-01 15:22
(Received via mailing list)
This seems to work for me for my version and os etc.

ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin10.0.0]
$ ruby -e "puts 0.5 == 5.0"
false
$
Posted by Heesob Park (phasis)
on 2010-09-01 15:30
(Received via mailing list)
Hi,

2010/9/1 Thomas Sevestre <thomas.sevestre@tcare.fr>:
> ruby 1.8.6 (2009-08-04 patchlevel 383) [i686-linux]
> 0.5
>
> Do you have any idea of what is going on?
>
This is a gcc version issue with gcc 4.4.1.

Refer to http://www.ruby-forum.com/topic/199860

Regards,
Park Heesob
Posted by Kirk Haines (Guest)
on 2010-09-01 15:50
(Received via mailing list)
On Wed, Sep 1, 2010 at 6:44 AM, Thomas Sevestre
<thomas.sevestre@tcare.fr> wrote:
> ruby 1.8.6 (2009-08-04 patchlevel 383) [i686-linux]
> 0.5
>
> Do you have any idea of what is going on?

GCC. The version of GCC that you built with does fun and entertaining
things with floating point numbers in the p383 (and many other patch
levels of 1.8.6 and 1.8.7) source. Try pulling from SVN and building
that one:

svn co http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6

Let me know if you still experience the bizarre floating point behavior.


Kirk Haines
Posted by Thomas Sevestre (Guest)
on 2010-09-01 15:52
(Received via mailing list)
Le 1 sept. 10 à 15:27, Heesob Park a écrit :

>> 07:39:26
>> 5.0
>
> Regards,
> Park Heesob
>
>


This is it!

Thanks,
Thomas
Please log in before posting. Registration is free and takes only a minute.
Existing account (Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
No account? Register here.