Questions tagged [pp-perl-par-packager]
23 questions
0
votes
1 answer
PERL do not run script after PAR
[root@localhost html]# rpm -q centos-release
centos-release-7-9.2009.1.el7.centos.x86_64
[root@localhost html]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Dec 13 2020 00:35:05
[root@localhost html]# perl -v
This is perl 5,…

Liandro Cos
- 65
- 11
0
votes
1 answer
Auto replace of the exe file or the script/myscript.pl from the Server
So I deploy the PerlPacked exe tool to the users. I would like to run the self auto-replacement of the new Tool from the server after checking if there is new tool available.
1)
I know in windows, when a Program is Running, you can rename my.exe =>…

Aravind Nadumane
- 170
- 1
- 11
0
votes
1 answer
Get all dependencies for Par::Packer?
I'm using Par::Packer on OSX and Linux to create binaries for some applications that utilize Paws.
I'm calling pp like so:
pp -o build_cluster -x -c -I lib/ @ppdeps bin/build_cluster
ppdeps contains a list of modules that caused pp to fail because…

Roy Hubbard
- 53
- 1
- 7
0
votes
1 answer
Perl packed/compiled GUI app does not start/not work?
I'm trying to pack/compile this simple app using pp with pp --gui -o test.exe test.pl:
#!/usr/bin/perl -w
use Win32::GUI();
use Win32::TieRegistry (Delimiter => "/");
use File::Basename;
use strict;
my $slabel;
my $main = Win32::GUI::Window->new(
…

Pawel
- 171
- 2
- 5
0
votes
1 answer
Missing 'libexpat-1_.dll' error for executable made with pp
I made exe file with pp using Strawberry Perl, but when I run it on another machine, I get following error:
The program can't start because libexpat-1__.dll is missing from your computer. Try reinstalling the program to fix this problem.
I make…

flamey
- 2,311
- 4
- 33
- 40
0
votes
1 answer
How to add license to my Unix based perl project
I have a UNIX based perl project, with a main.pl file which further uses some of the user defined perl modules. I want to add licensing to my perl project. What are the best ways to to it?

Harley
- 564
- 5
- 8
0
votes
1 answer
perl compiler or packer that tolerate perl fork in windows plateform
If Perl code use fork or its variant like Paralell::Loops or Parallel::ForkManager, pp from Par::Packer generated standalone exe will crash when run, see example in https://groups.google.com/forum/?fromgroups#!topic/perl.par/U4HbbbcRRTQ. B::C or…

Frank
- 505
- 5
- 14
0
votes
1 answer
Perl Got error when use pp -o test.pl
I tried to convert perl program to exe file. My perl version is 5.16.2 on my Windows 7 64bit, I use ppm install PAR:Packer, version 1.013, But when I use pp -o test.pl, I got the error:
Perl lib version (5.16.2) doesn't match executable version…

emily
- 61
- 1
- 3