Moved native coroutine type checking message

Not to be interleaved by fallback checking messages
This commit is contained in:
Nobuyoshi Nakada 2021-07-06 19:20:39 +09:00
parent afd4cfcf22
commit c5e6fa4853
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -2486,7 +2486,6 @@ AC_ARG_WITH(coroutine,
AS_HELP_STRING([--with-coroutine=IMPLEMENTATION], [specify the coroutine implementation to use]),
[coroutine_type=$withval], [coroutine_type=])
AS_CASE([$coroutine_type], [yes|''], [
AC_MSG_CHECKING(native coroutine implementation for ${target_cpu}-${target_os})
coroutine_type=
AS_CASE(["$target_cpu-$target_os"],
[universal-darwin*], [
@ -2548,6 +2547,7 @@ AS_CASE([$coroutine_type], [yes|''], [
)
]
)
AC_MSG_CHECKING(native coroutine implementation for ${target_cpu}-${target_os})
AC_MSG_RESULT(${coroutine_type})
])
COROUTINE_H=coroutine/$coroutine_type/Context.h