mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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.
This commit is contained in:
parent
c45dd4d482
commit
8c7f4e8f8b
1 changed files with 1 additions and 1 deletions
|
@ -792,7 +792,7 @@ compile_c_to_o(const char *c_file, const char *o_file)
|
|||
"-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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue