Re: [IronPython] compiling an executable with the standard library

2010-07-12 Thread Andrew Evans
3:57 PM > *To:* Discussion of IronPython > *Subject:* Re: [IronPython] compiling an executable with the standard > library > > > > A quick thought do I need to reference Threading by doing something like > "stdlib.Threading" or can I just do from Threading import

Re: [IronPython] compiling an executable with the standard library

2010-07-12 Thread Dino Viehland
users-boun...@lists.ironpython.com] On Behalf Of Andrew Evans Sent: Monday, July 12, 2010 3:57 PM To: Discussion of IronPython Subject: Re: [IronPython] compiling an executable with the standard library A quick thought do I need to reference Threading by doing something like "stdlib.Threading

Re: [IronPython] compiling an executable with the standard library

2010-07-12 Thread Michael Foord
Of *Andrew Evans *Sent:* Monday, July 12, 2010 10:50 AM *To:* Discussion of IronPython *Subject:* [IronPython] compiling an executable with the standard library I am having problems compiling an executable. From what research I have done, I n

Re: [IronPython] compiling an executable with the standard library

2010-07-12 Thread Andrew Evans
m working – it’ll be fixed >> in 2.6.2. You could compile w/ 2.6.0 to get a working EXE or you could >> remove any std lib modules that fail to compile. >> >> >> >> Now you can just do a clr.AddReference(‘stdlib.dll’) in your script and >> the std lib will be av

Re: [IronPython] compiling an executable with the standard library

2010-07-12 Thread Andrew Evans
.AddReference(‘stdlib.dll’) in your script and the > std lib will be available to you. > > > > *From:* users-boun...@lists.ironpython.com [mailto: > users-boun...@lists.ironpython.com] *On Behalf Of *Andrew Evans > *Sent:* Monday, July 12, 2010 10:50 AM > *To:* Discussion

Re: [IronPython] compiling an executable with the standard library

2010-07-12 Thread Dino Viehland
les that fail to compile. Now you can just do a clr.AddReference('stdlib.dll') in your script and the std lib will be available to you. From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Andrew Evans Sent: Monday, July 12, 2010 10:50 AM To:

[IronPython] compiling an executable with the standard library

2010-07-12 Thread Andrew Evans
I am having problems compiling an executable. From what research I have done, I need to include in my compilation the python standard modules that I am using. How ever I can not figure out how to do this. Any advice would be appreciated here is the command I am using ipy \pyc.py /main:\p2pChat.py