[#67346] Future of test suites for Ruby — Charles Oliver Nutter <headius@...>
I'll try to be brief so we can discuss all this. tl;dr: RubySpec is
19 messages
2015/01/05
[#67353] Re: Future of test suites for Ruby
— Tanaka Akira <akr@...>
2015/01/05
2015-01-06 7:18 GMT+09:00 Charles Oliver Nutter <headius@headius.com>:
[#67444] [ruby-trunk - Feature #10718] [Open] IO#close should not raise IOError on closed IO objects. — akr@...
Issue #10718 has been reported by Akira Tanaka.
3 messages
2015/01/09
[#67689] Keyword Arguments — Anthony Crumley <anthony.crumley@...>
Please forgive my ignorance as I am new to MRI development and am still
5 messages
2015/01/20
[#67733] [ruby-trunk - Bug #10761] Marshal.dump 100% slower in 2.2.0 vs 2.1.5 — normalperson@...
Issue #10761 has been updated by Eric Wong.
4 messages
2015/01/21
[#67736] Re: [ruby-trunk - Bug #10761] Marshal.dump 100% slower in 2.2.0 vs 2.1.5
— Eric Wong <normalperson@...>
2015/01/22
normalperson@yhbt.net wrote:
[#67772] Preventing Redundant Email Messages — Jeremy Evans <code@...>
For a long time, I've wondered why I sometimes receive redundant email
5 messages
2015/01/23
[ruby-core:67400] [ruby-trunk - Bug #10710] can't compile ruby 2.2.0 with gcc versions older than 4.4.0
From:
normalperson@...
Date:
2015-01-07 19:28:31 UTC
List:
ruby-core #67400
Issue #10710 has been updated by Eric Wong.
stkaes@googlemail.com wrote:
> compilation stops because gcc before 4.4.0 does not support the flag
> -Wno-packed-bitfield-compat.
I'm curious what error you saw. An ancient CentOS 5.4 x86-64 machine
managed to build it using: gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-46)
--- a/configure.in
+++ b/configure.in
@@ -788,6 +788,9 @@ rb_cv_warnflags="$warnflags"
if test "$GCC:${warnflags+set}:no" = yes::no; then
if test $gcc_major -ge 4; then
extra_warning=-Werror=extra-tokens
+ if test $gcc_major -gt 4 -o $gcc_minor -ge 4; then
+ extra_warning="$extra_warning -Wno-packed-bitfield-compat"
+ fi
I think "||" is preferable to "-o" for portability. But maybe not a
problem nowadays...
----------------------------------------
Bug #10710: can't compile ruby 2.2.0 with gcc versions older than 4.4.0
https://bugs.ruby-lang.org/issues/10710#change-50836
* Author: Stefan Kaes
* Status: Open
* Priority: Normal
* Assignee: Nobuyoshi Nakada
* Category: build
* Target version:
* ruby -v: 2.2.0
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN, 2.2: UNKNOWN
----------------------------------------
compilation stops because gcc before 4.4.0 does not support the flag -Wno-packed-bitfield-compat.
patch can be found here: https://github.com/skaes/rvm-patchsets/blob/master/patches/ruby/2.2.0/railsexpress/05-fix-packed-bitfield-compat-warning-for-older-gccs.patch
---Files--------------------------------
05-fix-packed-bitfield-compat-warning-for-older-gccs.patch (760 Bytes)
--
https://bugs.ruby-lang.org/