aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-17 11:24:00 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-06-17 11:24:00 +0000
commit07a296cead4db6c8c7d47009f2443b148fa67634 (patch)
tree485f24fa839533b60594a5c642acb3c3607b7ec4
parente521b916eca6b149252db69ff914223cfba54d50 (diff)
downloadruby-07a296cead4db6c8c7d47009f2443b148fa67634.tar.gz
* ext/rbconfig/sizeof/extconf.rb: Check __float80.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50936 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/rbconfig/sizeof/extconf.rb1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f33500b6d2..a7dbae7ca2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 17 20:23:29 2015 Tanaka Akira <akr@fsij.org>
+
+ * ext/rbconfig/sizeof/extconf.rb: Check __float80.
+
Wed Jun 17 15:15:53 2015 NAKAMURA Usaku <usa@ruby-lang.org>
* safe.c (safe_setter): of course, don't have to warn the limitation of
diff --git a/ext/rbconfig/sizeof/extconf.rb b/ext/rbconfig/sizeof/extconf.rb
index 3006436fac..efbdeb7d6a 100644
--- a/ext/rbconfig/sizeof/extconf.rb
+++ b/ext/rbconfig/sizeof/extconf.rb
@@ -35,5 +35,6 @@ check_sizeof('_Decimal64') # x86_64 ABI
check_sizeof('_Decimal128') # x86_64 ABI
check_sizeof('__m64') # x86_64 ABI (optional)
check_sizeof('__m128') # x86_64 ABI (optional)
+check_sizeof('__float80') # gcc x86
create_makefile('rbconfig/sizeof')