Re: [IronPython] compiling standalone programs

2006-06-15 Thread Sanghyeon Seo
2006/6/16, jeff sacksteder <[EMAIL PROTECTED]>: > > That appears to still create a console window at runtime. Can that be > disabled? I know that Py2exe can create 'console' or 'windows' applications > optionally. This is the issue #346 and it seems that it will be fixed in 1.0 Beta 8. http://www

Re: [IronPython] compiling standalone programs

2006-06-15 Thread jeff sacksteder
And this will produce a source.exe file.  The executable, however, willstill need the IronPython.dll reference.That appears to still create a console window at runtime.  Can that be  disabled? I know that Py2exe can create 'console' or 'windows' applications optionally. ___

Re: [IronPython] compiling standalone programs

2006-06-15 Thread Kranar Drogin
To compile a Python source file to an executable, you can use the –X:SaveAssemblies option in the IronPython console. Given a file source.py, you would just do: IronPythonConsole –X:SaveAssemblies source.py And this will produce a source.exe file. The executable, however, will still need the