[#66678] [ruby-trunk - Feature #10481] Add "if" and "unless" clauses to rescue statements — alex@...
Issue #10481 has been updated by Alex Boyd.
3 messages
2014/12/04
[#66762] Re: [ruby-changes:36667] normal:r48748 (trunk): struct: avoid all O(n) behavior on access — Tanaka Akira <akr@...>
2014-12-10 0:44 GMT+09:00 normal <ko1@atdot.net>:
3 messages
2014/12/10
[#66851] [ruby-trunk - Feature #10585] struct: speedup struct.attr = v for first 10 attributes and struct[:attr] for big structs — funny.falcon@...
Issue #10585 has been updated by Yura Sokolov.
3 messages
2014/12/15
[#67126] Ruby 2.2.0 Released — "NARUSE, Yui" <naruse@...>
We are pleased to announce the release of Ruby 2.2.0.
8 messages
2014/12/25
[#67128] Re: Ruby 2.2.0 Released
— Rodrigo Rosenfeld Rosas <rr.rosas@...>
2014/12/25
I can't install it in any of our Ubuntu servers using rbenv:
[#67129] Re: Ruby 2.2.0 Released
— SHIBATA Hiroshi <shibata.hiroshi@...>
2014/12/25
> I can't install it in any of our Ubuntu servers using rbenv:
[ruby-core:66967] undefined symbol: rb_Digest_SHA1_Init
From:
Jean-Christophe Haessig <jean-christophe.haessig@...>
Date:
2014-12-19 09:41:48 UTC
List:
ruby-core #66967
Hello, While trying to install redmine, I got the "undefined symbol: rb_Digest_SHA1_Init" (and others) which has been reported several times : https://www.google.fr/search?q=rb_Digest_SHA1_Init&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:fr:official&client=firefox-a&channel=fflb&gfe_rd=cr&ei=WJ-RVN2cD63j8wfW6IGoAw I tried all the solutions suggested, but it didn't work. Maybe I should have run make distclean;./configure again, but instead I found that e.g. "sha1.o" was missing in $OBJS in ext/digest/sha1/Makefile. While it sounds normal if the configure step does not include support for missing libraries, here it just happily compiles and later reports a linker fault on execution (objdump -t showed the symbol was undefined). Simply adding sha1.o in the Makefile and running make agian fixed the problem, but in the meantilme I also had installed libssl, which I suspect would have also fixed the problem if I re-ran configure. I think configure should fail earlier if the problem comes from here. I can provide more details if needed. My platform was a RHEL 6.5 Thanks.