[Mono-devel-list] Re: Bug in mcs '/r:' handling
Miguel de Icaza
miguel at ximian.com
Mon Apr 7 09:08:20 EDT 2003
Hello,
There are 3 assemblies created:
a/a.dll - references no other assemblies
b/b.dll - references a.dll
c.exe - references b.dll
In the makefile there are two attempts to build c.exe:
mcs /r:a/a.dll /r:b/b.dll c.cs
mcs /r:b/b.dll /r:a/a.dll c.cs
I am a bit worried about automatically adding the directories where the
assemblies live to the search path. Would it be enough to do:
mcs -lib:a,b -r:a.dll -r:b.dll
Miguel
More information about the Mono-devel-list
mailing list