[Mono-list] Mono on NetBSD and problems compiling corlib

Miguel de Icaza miguel@ximian.com
08 Jan 2003 12:57:10 -0500


Hello,

> > chunks and stick them back together again, aka cc -c style?
> 
> No, this is not possible, though we're investigating ways to reduce
> memory usage.

We could implement the /target:module option (which is a wish-list item
right now on bugzilla) to achieve a similar effect.

Another possibility is using assemblies instead of modules, you can
compile with:

	mcs /target:library a.cs b.cs c.cs

And then link it:

	mcs -o proggie.exe d.cs /r:library.dll

We have identified the parts of MCS that are consuming a lot of CPU time
and a lot of memory, but we have not yet made changes to modify this.

Miguel