ruby-changes:50204
From: nobu <ko1@a...>
Date: Fri, 9 Feb 2018 00:46:15 +0900 (JST)
Subject: [ruby-changes:50204] nobu:r62322 (trunk): mjit.c: revert r62316 partially
nobu 2018-02-09 00:46:11 +0900 (Fri, 09 Feb 2018) New Revision: 62322 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=62322 Log: mjit.c: revert r62316 partially * mjit.c (compile_c_to_so): libs is not constant on Windows. Modified files: trunk/mjit.c Index: mjit.c =================================================================== --- mjit.c (revision 62321) +++ mjit.c (revision 62322) @@ -660,7 +660,7 @@ compile_c_to_so(const char *c_file, cons https://github.com/ruby/ruby/blob/trunk/mjit.c#L660 int exit_code; const char *input[] = {NULL, NULL}; const char *output[] = {"-o", NULL, NULL}; - static const char *const libs[] = { + const char *libs[] = { #ifdef _MSC_VER LIBRUBYARG_SHARED, "-link", -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/