[Mono-bugs] [Bug 22532] New - DllImport name mangling should trim .dll from libnames

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
26 Mar 2002 16:16:24 -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 mkestner@speakeasy.net.

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

--- shadow/22532	Tue Mar 26 11:16:24 2002
+++ shadow/22532.tmp.23554	Tue Mar 26 11:16:24 2002
@@ -0,0 +1,22 @@
+Bug#: 22532
+Product: Mono/Runtime
+Version: unspecified
+OS: other
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Minor
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: mkestner@speakeasy.net               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: DllImport name mangling should trim .dll from libnames
+
+[DllImport("foo.dll")] is mangled to libfoo.dll.so, when it would seem that
+the more likely candidate is simply libfoo.so.  Easy work around is to just
+use [DllImport("foo")], which works on both MS and mono, but since foo.dll
+is an acceptable format on ms, we should play well with the format too.