[前][次][番号順一覧][スレッド一覧]

ruby-changes:53671

From: samuel <ko1@a...>
Date: Wed, 21 Nov 2018 02:27:40 +0900 (JST)
Subject: [ruby-changes:53671] samuel:r65866 (trunk): Be even more specific, for some reason it was selecting amd64 on x64-mingw32.

samuel	2018-11-20 19:17:35 +0900 (Tue, 20 Nov 2018)

  New Revision: 65866

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65866

  Log:
    Be even more specific, for some reason it was selecting amd64 on x64-mingw32.

  Modified files:
    trunk/configure.ac
Index: configure.ac
===================================================================
--- configure.ac	(revision 65865)
+++ configure.ac	(revision 65866)
@@ -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], [
+  [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"])

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]