1
0
Fork 0
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:
Takashi Kokubun 2019-08-30 22:03:36 +09:00
parent c45dd4d482
commit 8c7f4e8f8b
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD

View file

@ -792,7 +792,7 @@ compile_c_to_o(const char *c_file, const char *o_file)
"-c", NULL "-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) if (args == NULL)
return false; return false;