From 8c7f4e8f8b7f9e74195ea0eb51f39014fec342c0 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Fri, 30 Aug 2019 22:03:36 +0900 Subject: [PATCH] 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. --- mjit_worker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mjit_worker.c b/mjit_worker.c index 499f8cff75..7bdc3c45a1 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) "-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;