[Mono-bugs] [Bug 26904][Nor] Changed - -L directive doesn't override system path

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
24 Jun 2002 22:53:32 -0000


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 gonzalo@ximian.com.

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

--- shadow/26904	Mon Jun 24 13:58:43 2002
+++ shadow/26904.tmp.6612	Mon Jun 24 18:53:32 2002
@@ -1,14 +1,14 @@
 Bug#: 26904
 Product: Mono/MCS
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Normal
 Component: Misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: michael@ximian.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -26,6 +26,17 @@
 mcs --unsafe --target library -L ../glib -L ../pango -r glib-sharp -r
 pango-sharp -o atk-sharp.dll --recurse '*.cs'
 
 removing glib-sharp from the install made it build.
 
 I know not if mcs shares an assembly space with the code it's compiling.
+
+------- Additional Comments From gonzalo@ximian.com  2002-06-24 18:53 -------
+By looking in mcs/mcs/driver.c (LoadAssembly) you'll see that you're
+right.
+
+A temporary workaround could be using something like 
+mcs [...] -r ../glib/glib-sharp ...]
+
+without using -L option (dunno if you should also append the .dll to
+the assembly name).
+