ruby-changes:57406
From: Takashi <ko1@a...>
Date: Fri, 30 Aug 2019 22:04:43 +0900 (JST)
Subject: [ruby-changes:57406] Takashi Kokubun: 8c7f4e8f8b (master): Try dropping DLDFLAGS from compile_c_to_o
https://git.ruby-lang.org/ruby.git/commit/?id=8c7f4e8f8b From 8c7f4e8f8b7f9e74195ea0eb51f39014fec342c0 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun <takashikkbn@g...> Date: Fri, 30 Aug 2019 22:03:36 +0900 Subject: Try dropping DLDFLAGS from compile_c_to_o I think this did not work for some environments, but this seems to fix OpenBSD RubyCI failure: https://rubyci.org/logs/rubyci.s3.amazonaws.com/openbsd65/ruby-master/log/20190830T110008Z.fail.html.gz Let me check RubyCI impact by this. diff --git a/mjit_worker.c b/mjit_worker.c index 499f8cf..7bdc3c4 100644 --- a/mjit_worker.c +++ b/mjit_worker.c @@ -792,7 +792,7 @@ compile_c_to_o(const char *c_file, const char *o_file) https://github.com/ruby/ruby/blob/trunk/mjit_worker.c#L792 "-c", NULL }; - char **args = form_args(4, cc_common_args, CC_CODEFLAG_ARGS, files, CC_DLDFLAGS_ARGS); + char **args = form_args(3, cc_common_args, CC_CODEFLAG_ARGS, files); if (args == NULL) return false; -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/