From ed707cd46e9f9a080b6f63e30d4beab3bbf99f79 Mon Sep 17 00:00:00 2001 From: Mikhail Kornaukhov Date: Thu, 11 Jul 2024 12:41:43 +0300 Subject: [PATCH] one more fix --- compiler/compiler-settings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/compiler-settings.cpp b/compiler/compiler-settings.cpp index 9432434b34..6d17d6d0b0 100644 --- a/compiler/compiler-settings.cpp +++ b/compiler/compiler-settings.cpp @@ -322,7 +322,7 @@ void CompilerSettings::init() { } else { // default value is false // when we build using full runtime, we should force to use runtime as static lib - force_link_runtime.set_option_arg_value("1"); + force_link_runtime.value_ = true; } std::string cxx_default_flags = ss.str();