views:

73

answers:

1

Hi,

Can anyone provide a step by step instruction on how to build the Mono class library (namely System.dll and mscorlib.dll) on windows? I can already build the core libmono/mono stuff using msvc.

I've already looked at the following (none of them work...)

  1. http://ondotnet.com/pub/a/dotnet/2005/02/07/monowindows.html
  2. http://www.codeproject.com/KB/cross-platform/mono%5Fon%5Fwindows.aspx
  3. http://www.mono-project.com/Compiling%5FMono%5Fon%5FWindows

Note: I'm using the latest source from SVN. (I need tasklet support...)

Thanks.

+3  A: 

Cygwin is the only psuedo-supported way to compile the Mono class libraries on Windows.

You may be better off compiling them on Linux and then copying them over to Windows.

jpobst
Does the mscorlib.dll compiled on linux work on windows?
jameszhao00
Yes. All of Mono's class libraries are cross platform .net assemblies.
jpobst
Just tried. Couldn't setup the pkg-cfg stuff correctly for glib under mingw. Arrg...
jameszhao00