From: Gleb Balykov Date: Fri, 14 Oct 2022 14:21:39 +0000 (+0300) Subject: [Tizen] fix for dotnet specific arguments in corerun X-Git-Tag: accepted/tizen/unified/20221103.165808~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61c2e4383e583dd8683260f612f3a4f0c01c53e6;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [Tizen] fix for dotnet specific arguments in corerun --- diff --git a/src/coreclr/hosts/corerun/corerun.cpp b/src/coreclr/hosts/corerun/corerun.cpp index b3f2c86..b377b0f 100644 --- a/src/coreclr/hosts/corerun/corerun.cpp +++ b/src/coreclr/hosts/corerun/corerun.cpp @@ -534,7 +534,7 @@ static bool parse_args( // Tizen/armel. So we need to skip dotnet specific arguments, we patch corerun for it because // Microsoft.DotNet.RemoteExecutor tries to execute binary that it gets from /proc/self/maps, so we // need a binary that will behave like dotnet. - else if (pal::strcmp(option, W("--runtimeconfig")) == 0 || pal::strcmp(option, W("--depsfile")) == 0) + else if (pal::strcmp(option, W("runtimeconfig")) == 0 || pal::strcmp(option, W("depsfile")) == 0) { i++; continue;