1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/rbconfig/sizeof/extconf.rb: Check C99 standard integer types.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50750 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2015-06-03 12:14:21 +00:00
parent 2f9b7898f6
commit 899d49bd29
2 changed files with 23 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Wed Jun 3 21:14:20 2015 Tanaka Akira <akr@fsij.org>
* ext/rbconfig/sizeof/extconf.rb: Check C99 standard integer types.
Wed Jun 3 21:00:47 2015 Tanaka Akira <akr@fsij.org>
* configure.in: Don't check __int128.

View file

@ -1,4 +1,23 @@
$srcs = %w[sizes.c]
$distcleanfiles.concat($srcs)
check_sizeof('int8_t')
check_sizeof('int16_t')
check_sizeof('int32_t')
check_sizeof('int64_t')
check_sizeof('int_least8_t')
check_sizeof('int_least16_t')
check_sizeof('int_least32_t')
check_sizeof('int_least64_t')
check_sizeof('int_fast8_t')
check_sizeof('int_fast16_t')
check_sizeof('int_fast32_t')
check_sizeof('int_fast64_t')
check_sizeof('intptr_t')
check_sizeof('intmax_t')
check_sizeof('sig_atomic_t', %w[signal.h])
check_sizeof('wchar_t')
check_sizeof('wint_t', %w[wctype.h])
check_sizeof('wctrans_t', %w[wctype.h])
check_sizeof('wctype_t', %w[wctype.h])
check_sizeof('__int128')
create_makefile('rbconfig/sizeof')