aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorodaira <odaira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-10 23:22:56 +0000
committerodaira <odaira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-10 23:22:56 +0000
commit3a5cc345f8bab6d179f79265ba20234e41494a68 (patch)
tree4a1344ced170115c98519b3b3df165c24fc3ae1c /configure.ac
parentdff1e89bfb77e5d57bc56312364ac2036f3f7a99 (diff)
downloadruby-3a5cc345f8bab6d179f79265ba20234e41494a68.tar.gz
Native coroutine implementation for ppc64le Linux
* configure.ac: enable fiber coroutine for powerpc64le-linux * coroutine/ppc64le/Context.S: coroutine_transfer implementation * coroutine/ppc64le/Context.h: coroutine implementation git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 845e7e154d..4e3f1ef0e5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2331,6 +2331,9 @@ AS_CASE(["$rb_cv_fiber_coroutine"], [yes|''], [
[x64-mingw32], [
rb_cv_fiber_coroutine=win64
],
+ [powerpc64le-linux], [
+ rb_cv_fiber_coroutine=ppc64le
+ ],
[*], [
rb_cv_fiber_coroutine=
]