Re: [IronPython] Modifying The PYC Stub EXE

2009-04-09 Thread Dave Fugate
...@lists.ironpython.com] On Behalf Of Davy Mitchell Sent: Wednesday, April 08, 2009 1:39 PM To: Discussion of IronPython Subject: Re: [IronPython] Modifying The PYC Stub EXE Dave - +1 :-) On Wed, Apr 8, 2009 at 9:19 PM, Dave Fugate dfug...@microsoft.com wrote: I've been working on making this happen

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-09 Thread Davy Mitchell
of IronPython Subject: Re: [IronPython] Modifying The PYC Stub EXE Dave - +1 :-) On Wed, Apr 8, 2009 at 9:19 PM, Dave Fugate dfug...@microsoft.com wrote: I've been working on making this happen for a few days now.  It should be available in the IronPython_Main branch on CodePlex's TFS server within

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-08 Thread Davy Mitchell
:) -Original Message- From: users-boun...@lists.ironpython.com [mailto:users- boun...@lists.ironpython.com] On Behalf Of Davy Mitchell Sent: Monday, April 06, 2009 10:57 AM To: Discussion of IronPython Subject: Re: [IronPython] Modifying The PYC Stub EXE Hi Dino, All the DLLs

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-08 Thread Dave Fugate
Mitchell Sent: Wednesday, April 08, 2009 1:11 PM To: Discussion of IronPython Subject: Re: [IronPython] Modifying The PYC Stub EXE SNIP Is PYC ever likely to become part of the standard install? /SNAP ___ Users mailing list Users@lists.ironpython.com

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-08 Thread Davy Mitchell
: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Davy Mitchell Sent: Wednesday, April 08, 2009 1:11 PM To: Discussion of IronPython Subject: Re: [IronPython] Modifying The PYC Stub EXE SNIP Is PYC ever likely to become part of the standard install

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-06 Thread Dino Viehland
What DLLs you want to be loaded? The reason I ask is that .NET assembly loading doesn't really work on the basis of the current working directory - instead it looks at the app base which by default is where your EXE is located. We do modify sys.path so that IronPython can load things outside

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-06 Thread Davy Mitchell
Hi Dino, All the DLLs are in the Build directory. Everything runs great if the CWD is the folder containing the EXE. If you try and run it from another folder things go wrong (File Not Found Exception). I've posted a basic repro on my Skydrive

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-06 Thread Bruce Bromberek
Davy- I had a similar problem in that the EXE stub built by pyc does not work as expected. My problem was the sys.argv being set to None. As someone who comes to ironpython from Cpython, I want the ironpython equivalent of py2exe where everything just works :) The best advice I've found here

Re: [IronPython] Modifying The PYC Stub EXE

2009-04-06 Thread Dino Viehland
the above code :) -Original Message- From: users-boun...@lists.ironpython.com [mailto:users- boun...@lists.ironpython.com] On Behalf Of Davy Mitchell Sent: Monday, April 06, 2009 10:57 AM To: Discussion of IronPython Subject: Re: [IronPython] Modifying The PYC Stub EXE Hi Dino