Subject: | Directly created executables not working, but executables created through par-archives work |
Hi!
This is first time I try to use PAR, so this can be my own mistake too,
but when I issue command: "pp -o soft soft.pl" it goes ok, but when I
try to execute that bin with "./soft", I get: "No such file or directory
at -e line 731."
Is that above command ment to work, like I think? (To directly create a
working executable, without needing to first create a separate PAR file.)
But I do get it working when I create it through soft.par:
$ pp -p -o soft.par soft.pl
$ perl -MPAR soft.par soft.pl --mode=10 [works otherwise (no error about
given switches), but does not read GetOpt::Long arguments]
$ pp -o soft soft.par
$ ./soft [works now]
System is Linux Slackware 10.0.
Perl: 5.8.4
About 68 CPAN modules installed, most of them related to this script
being built.
Thanks in advance!