Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Perl Install PAR:Packer Problems

My perl version is 5.16.2 on my Windows 7 64bit, I failed to install PAR:Packer. I tried active perl and strawberry perl , both got the same error. Can you please give me some suggestion. Below is my experience:

I tried ppm install PAR:Packer, version 1.013, But when I use pp, I got the error:

Perl lib version (5.16.2) doesn't match executable version (v5.16.0).

I also tried cpan install PAR:Packer, version 1.014. But I got the error during installation. The pop up window says: par.exe has stopped working. Then command prompt got the error:

C:\Perl64\bin\perl.exe -Mblib run_with_inc.pl par.exe -q -B -Oparldyn.exe
system(par.exe -I C:\Users\PAR-Packer-1.014\blib\arch -I C:\Users\PAR-Packer-1.014\blib\lib -     IC:/Perl64/site/lib -IC:/Perl64/lib -I. -q -B -Oparldyn.exe) failed:
dmake.exe:  Error code 255, while making 'parldyn.exe'
dmake.exe:  Error code 255, while making 'subdirs'

I have googled extensively, but as of yet haven't been able to find a solution, any help is greatly appreciated, thanks a lot!

like image 672
emily Avatar asked Apr 10 '13 12:04

emily


2 Answers

I simply changed the line 60 in .../perl64/Config.pm from

`$^V eq 5.16.3`

to

`$^V eq 5.16.3 or $^V eq 5.16.0`

and voila! My par-packer module 1.013 installed through ppm (ActiveState Perl 5.16.3) works ...

like image 168
Kamil Avatar answered Oct 19 '22 15:10

Kamil


I'll start off with my own environment:

  • Windows 7 x64 en_US
  • Strawberry Perl v5.16.2 32bit

I just confirmed that I do have PAR::Packer working on my environment. I'm running PAR::Packer version 1.014.

There is a bug logged about PAR::Packer 1.013 failing to build on certain environments. The bug is logged on CPAN here: https://rt.cpan.org/Public/Bug/Display.html?id=77408

I recommend trying one of the following paths forward (based on your build version requirements):

  1. Install PAR::Packer 1.0.14.
  2. Install the patched version of PAR::Packer 1.013 that is available at http://strawberryperl.com/package/kmx/perl-modules-patched/PAR-Packer-1.013_patched.tar.gz

To build you will need any dependencies as well. Hopefully those work just fine through CPAN.

Download either the patched version listed above or the latest version from the CPAN site, then execute:

perl Makefile.pl
dmake
dmake test
dmake install

Keep in mind PAR::Packer requires a C/C++ compiler to build.

like image 28
Gabriel Avatar answered Oct 19 '22 15:10

Gabriel