diff options
author | samuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-20 10:13:59 +0000 |
---|---|---|
committer | samuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-11-20 10:13:59 +0000 |
commit | 3e9beaf72b6b3a74acf764df4d801bb6371b6bca (patch) | |
tree | 7291a3fa8d1015a6141ec2d5dea530351c919edb /configure.ac | |
parent | ff86d1b61b62c710790cfca225303327745923f6 (diff) | |
download | ruby-3e9beaf72b6b3a74acf764df4d801bb6371b6bca.tar.gz |
Initial effort to support 32-bit Linux.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65847 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1f2d7d7ad9..a53e3e7ad5 100644 --- a/configure.ac +++ b/configure.ac @@ -2332,6 +2332,11 @@ AS_CASE(["$target_cpu-$target_os"], AC_DEFINE(FIBER_USE_COROUTINE, "coroutine/amd64/Context.h") AC_LIBOBJ([coroutine/amd64/Context]) ], + [*86-*], [ + AC_MSG_RESULT(x86) + AC_DEFINE(FIBER_USE_COROUTINE, "coroutine/x86/Context.h") + AC_LIBOBJ([coroutine/x86/Context]) + ] [*], [ AC_MSG_RESULT(no) ] |