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

configure.ac: support 32-bit builds on x86-64 systems

Because RAM is still expensive :<

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65921 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
normal 2018-11-22 08:46:44 +00:00
parent 16a642c331
commit b009de13bf

View file

@ -2337,7 +2337,11 @@ AS_CASE(["$rb_cv_fiber_coroutine"], [yes|''], [
rb_cv_fiber_coroutine=amd64
],
[x*64-linux], [
rb_cv_fiber_coroutine=amd64
AS_CASE(["$ac_cv_sizeof_voidp"],
[8], [ rb_cv_fiber_coroutine=amd64 ],
[4], [ rb_cv_fiber_coroutine=x86 ],
[*], [ rb_cv_fiber_coroutine= ]
)
],
[*86-linux], [
rb_cv_fiber_coroutine=x86