[Mono-dev] Building mcs from source without mono

Miguel de Icaza miguel at novell.com
Fri May 1 20:46:34 EDT 2009


> Is there an easy way to remove the dependency to the mono folder  
> completely?

Not easy as a general framework, but for the handful of assemblies that
you guys are using, you could probably just create a profile in:

	mcs/build/profiles

And create say a "unity" profile where you overwrite the compiler
settings to not be a bootstrap compile.  

And then you can build the assemblies that you are interested in like
this:

	for i in mscorlib System  System.Xml System.Core; do
	   (cd $i; make PROFILE=unity)
	done

Miguel.



More information about the Mono-devel-list mailing list