Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2016-01-14 15:14:50 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2016-01-14 15:16:57 +0300
commitdb0fa9870df5245b4d7189e3ee36157e68a30572 (patch)
tree50d0b3cbf822707ebbe13f94c9f16dc753ba2b75 /main/src/addins/MonoDevelop.Debugger.Soft
parentc40161b6e4362dbeffc70b2ef98a7bc07d7707f4 (diff)
Added support for different architectures of MonoRuntime so user can pick 32bit or 64bit version to start debugging
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger.Soft')
-rw-r--r--main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs b/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs
index 98d5f6edab..aa0993debf 100644
--- a/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs
+++ b/main/src/addins/MonoDevelop.Debugger.Soft/MonoDevelop.Debugger.Soft/SoftDebuggerEngine.cs
@@ -92,7 +92,7 @@ namespace MonoDevelop.Debugger.Soft
ExternalConsoleFactory.Instance.CreateConsole (dsi.CloseExternalConsoleOnExit), varsCopy);
return new ProcessAdapter (oper, Path.GetFileName (info.FileName));
};
-
+ startArgs.MonoExecutableFileName = runtime.MonoRuntimeInfo.Force64or32bit.HasValue ? runtime.MonoRuntimeInfo.Force64or32bit.Value ? "mono64" : "mono32" : "mono";
return dsi;
}