[Mono-bugs] [Bug 60479][Nor] New - ilasm cannot compile Python for .NET

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 20 Jun 2004 15:53:56 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by jluke@cfl.rr.com.

http://bugzilla.ximian.com/show_bug.cgi?id=60479

--- shadow/60479	2004-06-20 15:53:56.000000000 -0400
+++ shadow/60479.tmp.28154	2004-06-20 15:53:56.000000000 -0400
@@ -0,0 +1,39 @@
+Bug#: 60479
+Product: Mono: Compilers
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: IL assembler
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: jluke@cfl.rr.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: ilasm cannot compile Python for .NET
+
+Python for .NET uses ILAsm during its compile process, but mono's ilasm
+cannot yet compile it.  It works with the MS tools as that seems to be what
+they are using to develop it.
+
+http://www.zope.org/Members/Brian/PythonNet/index_html
+
+is where you can get the source, just edit the makefile
+to use mcs, monodis, and mono and type make to test
+
+I get this error with beta3:
+$ make
+ilasm /nologo /dll /quiet /output=CLR.dll \
+./src/runtime/CLRModule.il;
+syntax error, got token `K_INT32', expecting INT64 K_AT K_FROMUNMANAGED
+K_CALLMOSTDERIVED
+Error at: line (45) column (19)
+ 
+***** FAILURE *****
+make: *** [CLR.dll] Error 1
+
+(I'm not sure if you already knew about this, just filing just in case)