[Mono-devel-list] Compile IronPython 0.7 with mono 1.1.7 on MacOS X 10.3 failed

Paolo Molaro lupus at ximian.com
Tue Mar 29 10:35:57 EST 2005


On 03/28/05 Martin Möllenbeck wrote:
> have anybody tried to build ironpython 0.7 with mono?
[...]
> BUILD FAILED - 0 non-fatal error(s), 10 warning(s)

There are some ut8 markers in the middle of some files:
IronPython/Hosting/IConsole.cs
and
IronPython/Hosting/PythonEngine.cs

Edit them and remove (they are just before the #region directive).
You also need corlib from svn, since it has a method that ironpython
needs. I used the attached makefile in the toplvevel IP dir.

lupus

-- 
-----------------------------------------------------------------
lupus at debian.org                                     debian/rules
lupus at ximian.com                             Monkeys do it better
-------------- next part --------------
all: IronMath.dll IronPython.dll ironp.exe

IronMath.dll: IronMath/*.cs
	gmcs -out:IronMath.dll -target:library IronMath/*.cs

IronPython.dll: IronMath.dll IronPython/*.cs IronPython/*/*.cs
	gmcs -out:IronPython.dll -r:IronMath.dll -target:library IronPython/*.cs IronPython/*/*.cs

ironp.exe: IronMath.dll IronPython.dll IronPythonConsole/*.cs
	gmcs -out:ironp.exe -r:IronPython.dll IronPythonConsole/*.cs

clean:
	rm -f IronMath.dll IronPython.dll ironp.exe



More information about the Mono-devel-list mailing list