[IronPython] IronPython 1.0 Beta 4 on Mono

Sanghyeon Seo sanxiyn at gmail.com
Fri Mar 10 17:19:16 CET 2006


The source compiles fine with Mono SVN trunk, revision 57777.

However, you need to edit the makefile. Apart from usual csc->gmcs and
mkdir -p edit, you need to add two references. It seems that only
project files were updated in Beta 4.

Edit
$(CSC) -t:library -r:../IronMath.dll -out:../IronPython.dll
-recurse:IronPython/*.cs
to
$(CSC) -t:library -r:../IronMath.dll -r:System.Design.dll
-r:System.Drawing.dll -out:../IronPython.dll -recurse:IronPython/*.cs

After that, it should compile fine with zero errors.

Seo Sanghyeon



More information about the Ironpython-users mailing list