From 8ad74296447f628fef2110516f5c332f8c0a31fe Mon Sep 17 00:00:00 2001 From: shyouhei Date: Mon, 30 Jan 2017 10:12:18 +0000 Subject: make FIXNUM_MAX visible from Ruby Because our tests now have several places where FIXNUM_MAX is needed, we decided to provide it along with several other constants. * template/limits.c.tmpl: new file, defining RbConfig::Limits * ext/rbconfig/sizeof/depend (limits.c): rule to generate limits.c * test/-ext-/num2int/test_num2int.rb: use RbConfig::Limits * bootstraptest/test_insns.rb: ditto. * .gitignore: ignore new generated file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- template/sizes.c.tmpl | 2 ++ 1 file changed, 2 insertions(+) (limited to 'template/sizes.c.tmpl') diff --git a/template/sizes.c.tmpl b/template/sizes.c.tmpl index 2d23cacace..75c1ff22c9 100644 --- a/template/sizes.c.tmpl +++ b/template/sizes.c.tmpl @@ -28,6 +28,7 @@ conditions = { void Init_sizeof(void) { + extern void Init_limits(); VALUE s = rb_hash_new(); rb_define_const(rb_define_module("RbConfig"), "SIZEOF", s); @@ -48,4 +49,5 @@ Init_sizeof(void) % end #undef DEFINE + Init_limits(); } -- cgit v1.2.3