[Mono-bugs] [Bug 59540][Nor] New - Probs in Compilation with MBAS (MCS works still fine)

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 3 Jun 2004 04:57:20 -0400 (EDT)


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 banirban@novell.com.

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

--- shadow/59540	2004-06-03 04:57:20.000000000 -0400
+++ shadow/59540.tmp.7596	2004-06-03 04:57:20.000000000 -0400
@@ -0,0 +1,50 @@
+Bug#: 59540
+Product: Mono: Compilers
+Version: unspecified
+OS: Red Hat 9.0
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Basic
+AssignedTo: banirban@novell.com                            
+ReportedBy: banirban@novell.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Probs in Compilation with MBAS (MCS works still fine)
+
+Reported by Jochen Wezel
+
+After refreshing my RedHat 9 system with Beta 2 from download page, I
+cannot compile assemblies with references to standard libraries with a
+normal compilation command. 
+
+The first version works fine, but not the second:
+=================================================
+
+[root@lwezel mono-dev]# mbas testmbas.vb /r:/usr/lib/mono/1.0/System.dll
+--------
+MonoBASIC: THIS IS STILL ALPHA AND UNSUPPORTED SOFTWARE, USE AT YOUR OWN
+RISK.
+--------
+Compilation succeeded
+[root@lwezel mono-dev]# mbas testmbas.vb /r:System.dll
+--------
+MonoBASIC: THIS IS STILL ALPHA AND UNSUPPORTED SOFTWARE, USE AT YOUR OWN
+RISK.
+--------
+error BC0006: Can not find assembly `System.dll'
+Log:
+
+Compilation failed: 1 Error(s), 0 warnings
+[root@lwezel mono-dev]#
+
+
+And MCS works fine:
+===================
+
+[root@lwezel mono-dev]# mcs test.cs /r:System.dll
+Compilation succeeded