From 60ea4d03edc6a9b8361c7013abd6222cd9468cff Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 8 Feb 2018 15:46:11 +0000 Subject: mjit.c: revert r62316 partially * mjit.c (compile_c_to_so): libs is not constant on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62322 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- mjit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mjit.c b/mjit.c index 517eadbbf5..55fa49df2a 100644 --- a/mjit.c +++ b/mjit.c @@ -660,7 +660,7 @@ compile_c_to_so(const char *c_file, const char *so_file) 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", -- cgit v1.2.3