holandes777 has asked for the wisdom of the Perl Monks concerning the following question:

A quick search of the site: Found 0 nodes roughly between 2016-06-03 and 1999-10-04 (searched 100.00% of DB). here title contains all of "perl", "packer", "install", "fail"

The command I ran: cpan -i PAR::Packer Here is the output of the install command:

Reading '/root/.cpan/Metadata' Database was generated on Fri, 03 Jun 2016 10:53:53 GMT Running install for module 'PAR::Packer' Running make for R/RS/RSCHUPP/PAR-Packer-1.033.tar.gz Checksum for /root/.cpan/sources/authors/id/R/RS/RSCHUPP/PAR-Packer-1. +033.tar.gz ok CPAN.pm: Building R/RS/RSCHUPP/PAR-Packer-1.033.tar.gz Checking if your kit is complete... Looks good Writing Makefile for myldr Writing Makefile for PAR::Packer Writing MYMETA.yml and MYMETA.json cp lib/PAR/StrippedPARL/Base.pm blib/lib/PAR/StrippedPARL/Base.pm cp lib/PAR/Filter/Obfuscate.pm blib/lib/PAR/Filter/Obfuscate.pm cp lib/PAR/Filter/Bleach.pm blib/lib/PAR/Filter/Bleach.pm cp lib/PAR/Filter/Bytecode.pm blib/lib/PAR/Filter/Bytecode.pm cp lib/pp.pm blib/lib/pp.pm cp lib/PAR/Filter.pm blib/lib/PAR/Filter.pm cp lib/PAR/Filter/PodStrip.pm blib/lib/PAR/Filter/PodStrip.pm cp lib/PAR/Packer.pm blib/lib/PAR/Packer.pm cp lib/PAR/Filter/PatchContent.pm blib/lib/PAR/Filter/PatchContent.pm cp lib/App/Packer/PAR.pm blib/lib/App/Packer/PAR.pm make[1]: Entering directory `/root/.cpan/build/PAR-Packer-1.033-5zwfVt +/myldr' /usr/bin/perl par_pl2c.pl my_par_pl < ../script/par.pl > my_par_pl.c /usr/bin/perl sha1.c.PL cc -c -D_REENTRANT -D_GNU_SOURCE -DDEBIAN -fstack-protector -fno-stric +t-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFF +SET_BITS=64 -I/usr/lib/perl/5.18/CORE -DPARL_EXE=\"parl\" -O2 -g ma +in.c cc main.o -s -Wl,-E -fstack-protector -L/usr/local/lib -L/usr/lib/p +erl/5.18/CORE -ldl -lm -lpthread -lc -lcrypt -o ./par make[1]: Leaving directory `/root/.cpan/build/PAR-Packer-1.033-5zwfVt/ +myldr' RSCHUPP/PAR-Packer-1.033.tar.gz make -- NOT OK
Does this suggest an error I can track down? I am having trouble determining what this is.
Running make test Can't test without successful make Running make install Make had returned bad status, install seems impossible
Thanks All!

Replies are listed 'Best First'.
Re: Perl Packer Install Fails on Ubuntu Trusty 32-Bit
by hippo (Archbishop) on Jun 03, 2016 at 18:27 UTC

    Par::Packer comes with Ubuntu Trusty anyway. If you're having some odd trouble installing it from source why not just use the deb (libpar-packer-perl)?

      Thank you, that was the answer. I neglected to research the ubuntu packages. I appreciate you pointing that out.
Re: Perl Packer Install Fails on Ubuntu Trusty 32-Bit
by 1nickt (Canon) on Jun 03, 2016 at 17:20 UTC

    I have Ubuntu 64-bit and it just installed OK. Note that there are different flags being passed to the compiler, and that the output of the command appears to be 'true':

    cc main.o -s -Wl,-E -fstack-protector -L/usr/local/lib -L/home/vagr +ant/perl5/perlbrew/perls/perl-5.16.3/lib/5.16.3/x86_64-linux/CORE -lp +erl -lnsl -ldl -lm -lcrypt -lutil -lc -o ./par true
    Maybe that's some help.


    The way forward always starts with a minimal test.
Re: Perl Packer Install Fails on Ubuntu Trusty 32-Bit
by Anonymous Monk on Jun 04, 2016 at 00:40 UTC

    I am having trouble determining what this is.

    Step outside of cpan ( "look PAR::Packer" ) and run "perl Makefile.PL && make test TEST_VERBOSE=1"

    It should return more than "bad status" which just means "not work"