[Mono-bugs] [Bug 76469][Cri] New - CSharpCodeCompiler doesn't start
mcs.exe on Windows
bugzilla-daemon at bugzilla.ximian.com
bugzilla-daemon at bugzilla.ximian.com
Tue Oct 18 11:53:33 EDT 2005
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by flashfm at yandex.ru.
http://bugzilla.ximian.com/show_bug.cgi?id=76469
--- shadow/76469 2005-10-18 11:53:33.000000000 -0400
+++ shadow/76469.tmp.377 2005-10-18 11:53:33.000000000 -0400
@@ -0,0 +1,32 @@
+Bug#: 76469
+Product: Mono: Class Libraries
+Version: 1.1
+OS:
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Critical
+Component: System
+AssignedTo: mono-bugs at ximian.com
+ReportedBy: flashfm at yandex.ru
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: CSharpCodeCompiler doesn't start mcs.exe on Windows
+
+Description of Problem:
+
+Mono 1.1.9.2
+Mono.CSharp.CSharpCodeCompiler doesn't start mcs.exe on Windows.
+
+Look into mcs\class\System\Microsoft.CSharp\CSharpCodeCompiler.cs, line 155:
+
+mcs.StartInfo.Arguments = windowsMcsPath + ' ' + BuildArgs (options,
+fileNames);
+
+It needs to surround windowsMcsPath by quotes:
+
+mcs.StartInfo.Arguments = "\""+ windowsMcsPath + "\" " + BuildArgs
+(options, fileNames);
More information about the mono-bugs
mailing list