mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
43d7fd0946
commit
904af4aef2
1 changed files with 2 additions and 2 deletions
|
@ -2327,13 +2327,13 @@ AS_IF([test "${universal_binary-no}" = yes ], [
|
||||||
|
|
||||||
AC_MSG_CHECKING(native fiber implementation)
|
AC_MSG_CHECKING(native fiber implementation)
|
||||||
AS_CASE(["$target_cpu-$target_os"],
|
AS_CASE(["$target_cpu-$target_os"],
|
||||||
[x*64-*x], [
|
[x*64-linux], [
|
||||||
AC_MSG_RESULT(amd64)
|
AC_MSG_RESULT(amd64)
|
||||||
COROUTINE_H=coroutine/amd64/Context.h
|
COROUTINE_H=coroutine/amd64/Context.h
|
||||||
AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
|
AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
|
||||||
AC_LIBOBJ([coroutine/amd64/Context])
|
AC_LIBOBJ([coroutine/amd64/Context])
|
||||||
],
|
],
|
||||||
[*86-*x], [
|
[*86-linux], [
|
||||||
AC_MSG_RESULT(x86)
|
AC_MSG_RESULT(x86)
|
||||||
COROUTINE_H=coroutine/x86/Context.h
|
COROUTINE_H=coroutine/x86/Context.h
|
||||||
AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
|
AC_DEFINE_UNQUOTED(FIBER_USE_COROUTINE, ["$COROUTINE_H"])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue