in reply to Re: Using Perl subroutines in a Perl2Exe exe file
in thread Using Perl subroutines in a Perl2Exe exe file
But then, I copied this .exe to another system (one without Perl) and ran it. It died, with:
E:\>foo.exe
: Win32::Process::Create() at IPC/Run.pm line 2097
: Win32::Process::Create() at IPC/Run.pm line 2216
: Win32::Process::Create() at IPC/Run.pm line 2216
A Perl guru in another place had told me that this indicates IPC::Run-spawned processes could not locate Perl at run time; he directed me to add:
# BEGIN { $^X = 'C:\Perl\bin\perl.exe' }
to my program. This worked, as long as there was a perl.exe file at that location. Since my 'other' system does not have any Perl installed, that file didn't exist.
I guess I had ASSumed that PAR/pp provided Perl. Not so? If not, can I just bundle perl.exe into my .exe file, and have it work?
Thanks!
tl
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Using Perl subroutines in a Perl2Exe exe file
by hydo (Monk) on Jul 02, 2005 at 07:26 UTC |