ruby-changes:53655
From: samuel <ko1@a...>
Date: Tue, 20 Nov 2018 22:52:40 +0900 (JST)
Subject: [ruby-changes:53655] samuel:r65865 (trunk): Limit coroutine implementations to Linux.
samuel 2018-11-20 19:17:31 +0900 (Tue, 20 Nov 2018) New Revision: 65865 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65865 Log: Limit coroutine implementations to Linux. Modified files: trunk/configure.ac Index: configure.ac =================================================================== --- configure.ac (revision 65864) +++ configure.ac (revision 65865) @@ -2327,13 +2327,13 @@ AS_IF([test "${universal_binary-no}" = y https://github.com/ruby/ruby/blob/trunk/configure.ac#L2327 AC_MSG_CHECKING(native fiber implementation) AS_CASE(["$target_cpu-$target_os"], - [x*64-*], [ + [x*64-*x], [ AC_MSG_RESULT(amd64) COROUTINE_H=coroutine/amd64/Context.h AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"]) AC_LIBOBJ([coroutine/amd64/Context]) ], - [*86-*], [ + [*86-*x], [ AC_MSG_RESULT(x86) COROUTINE_H=coroutine/x86/Context.h AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"]) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/