[Mono-bugs] [Bug 53045][Nor] New - mcs error when compiling on vfat partition
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 19 Jan 2004 01:33:37 -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 wkvasnikoff@hotmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=53045
--- shadow/53045 2004-01-19 01:33:37.000000000 -0500
+++ shadow/53045.tmp.3205 2004-01-19 01:33:37.000000000 -0500
@@ -0,0 +1,59 @@
+Bug#: 53045
+Product: Mono/Compilers
+Version: unspecified
+OS:
+OS Details: Fedora Core 1
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: C#
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: wkvasnikoff@hotmail.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: mcs error when compiling on vfat partition
+
+Description of Problem:
+When compiling a file with mcs on a vfat partition I get the following error:
+
+error CS0016: Could not write to file `test2.exe', cause: Could not find
+file "./test2.exe"
+
+msc actually does write the file correctly despite the error. When the
+exact same code is copied and compiled on my ext3 partion the error does
+not occur.
+
+The partion is mounted with the following options in my fstab file.
+/dev/hdb1 /mnt/share vfat auto,umask=000 0 0
+
+
+Steps to reproduce the problem:
+1. Make a simple C# program
+2. Compile the program on a vfat partion
+3.
+
+Actual Results:
+ON VFAT PARTITION
+[william@localhost error]$ mcs test2.cs
+error CS0016: Could not write to file `test2.exe', cause: Could not find
+file "./test2.exe"
+Compilation failed: 1 error(s), 0 warnings
+[william@localhost error]$ ls
+test2.cs test2.exe
+[william@localhost error]$
+
+Expected Results:
+ON EXT3 PARTITION
+[william@localhost error]$ mcs test2.cs
+Compilation succeeded
+[william@localhost error]$ ls
+test2.cs test2.exe
+[william@localhost error]$
+
+How often does this happen?
+Every time
+
+Additional Information: