[Mono-bugs] [Bug 53710][Wis] New - csc/mcs combatibility: compiling multiple files

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 1 Feb 2004 16:01:15 -0500 (EST)


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 yummyfiddlehead@yahoo.com.

http://bugzilla.ximian.com/show_bug.cgi?id=53710

--- shadow/53710	2004-02-01 16:01:15.000000000 -0500
+++ shadow/53710.tmp.12189	2004-02-01 16:01:15.000000000 -0500
@@ -0,0 +1,33 @@
+Bug#: 53710
+Product: Mono/Compilers
+Version: unspecified
+OS: 
+OS Details: agnostic
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: yummyfiddlehead@yahoo.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: csc/mcs combatibility: compiling multiple files 
+
+Description of Problem:
+When a program is compiled with csc like this `csc a.cs b.cs c.cs` it 
+produces an exe named c.exe by default.
+When a program is compiled with mcs like this `mcs a.cs b.cs c.cs` it 
+produces an exe named a.exe by default.
+
+Workaround:
+Specify the output name on the commandline as so: 
+`mcs a.cs b.cs c.cs -out:c.exe` 
+
+Fix:
+Change mcs default behavior so that follows the csc 
+default behavior.
+
+--sabmoc