http://qs1969.pair.com?node_id=1025844


in reply to pp with gui

A Basic debugging checklist style  print "PROGRAM STARTING\n"; can't hurt :)

Turn on debugging ( set PAR_GLOBAL_DEBUG=1, see PAR::Environment)

Try a simple diagnostic program  pp -e " use Data::Dump; dd\@ARGV; dd\@INC; dd\%INC; dd\%ENV; use PAR; dd[PAR::read_file(q{MANIFEST})]; "

PAR::FAQ, PAR::Tutorial

PAR-Packer
contrib/docs/where_is_it.txt
contrib/docs/who_am_i.txt

Re^3: Par Packer can't locate loadable module (pp -x or pp -l or pp -x -l ), Re: Par Packer can't locate loadable module
Re: Executable prepared using pp is creating some temporary folders
Re: __FILE__ fails in app built with PAR::Packer
Re: Decompiling PAR generated perl
Re: How PAR pp works?

Replies are listed 'Best First'.
Re^2: pp with gui
by Anonymous Monk on Mar 28, 2013 at 04:04 UTC
     pp -e " use Data::Dump; dd\@ARGV; dd\@INC; dd\%INC; dd\%ENV; use PAR; dd[split/[\r\n]+/,PAR::read_file(q{MANIFEST})]; "
      #!/usr/bin/perl -- use strict; use warnings; use Data::Dump; use PAR; dd { 'PAR_MANIFEST' => [split/[\r\n]+/,PAR::read_file(q{MANIFEST})], '%INC' => \%INC, '%ENV' => \%ENV, '@INC' => \@INC, '@ARGV' => \@ARGV, };
        Thanks, I am slowly going through all the information you posted and will try adding the code you sent. I don't know if this makes a difference but I noticed when I click on the .exe a small spinning circle appears briefly and then goes away. I assume that means it tries to load and fails. I will report back when I get debugging working.