summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorsamuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-20 10:13:59 +0000
committersamuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-20 10:13:59 +0000
commit3e9beaf72b6b3a74acf764df4d801bb6371b6bca (patch)
tree7291a3fa8d1015a6141ec2d5dea530351c919edb /configure.ac
parentff86d1b61b62c710790cfca225303327745923f6 (diff)
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.ac5
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)
]