summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsamuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-20 10:17:35 +0000
committersamuel <samuel@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-11-20 10:17:35 +0000
commit904af4aef28709933bf54e5f73761c4b1cf6169d (patch)
tree7c4c4488c074c6cb0b9ff67c3f20628a5b702010
parent43d7fd0946020157b4c3c8e124b3bf9a17d9789a (diff)
Be even more specific, for some reason it was selecting amd64 on x64-mingw32.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65866 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index f6b0bf010e..4d74c7737e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2327,13 +2327,13 @@ AS_IF([test "${universal_binary-no}" = yes ], [
AC_MSG_CHECKING(native fiber implementation)
AS_CASE(["$target_cpu-$target_os"],
- [x*64-*x], [
+ [x*64-linux], [
AC_MSG_RESULT(amd64)
COROUTINE_H=coroutine/amd64/Context.h
AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
AC_LIBOBJ([coroutine/amd64/Context])
],
- [*86-*x], [
+ [*86-linux], [
AC_MSG_RESULT(x86)
COROUTINE_H=coroutine/x86/Context.h
AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])