bcrowell2 has asked for the wisdom of the Perl Monks concerning the following question:
My gut reaction is to say, "Oh, well, I have zero Windows skills and no convenient Windows machine for testing and development, so I'll just stop offering a Windows executable." It's noncommercial software, and I don't feel any strong desire to put lots of work into maintaining Windows support. Before I do that, does anyone have any other suggestions? E.g., is there some known problem with pp on new versions of Windows?
The program depends on Perl/Tk, plus a few other libraries. By trial and error, I found that pp wasn't smart enough to include all the dependencies, so I had to tell it about some of them by hand. Here is the command line for pp that suffices to give me an executable that runs in Wine:
pp -M JSON::PP -M JSON::PP58 -M Tie::Hash::NamedCapture -M Tk::Bitmap +-o opengrade.exe opengrade.pl
Does it matter that my development machine is x64 and the target machines are 32-bit?
Thanks in advance!
-Ben
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Windows .exe produced by pp no longer runs?
by ikegami (Patriarch) on Jan 25, 2011 at 04:22 UTC | |
Re: Windows .exe produced by pp no longer runs?
by Anonymous Monk on Jan 25, 2011 at 08:31 UTC | |
Re: Windows .exe produced by pp no longer runs?
by elef (Friar) on Jan 25, 2011 at 09:42 UTC | |
by Anonymous Monk on Jan 25, 2011 at 10:12 UTC | |
by elef (Friar) on Jan 25, 2011 at 10:39 UTC | |
by Anonymous Monk on Jan 25, 2011 at 10:43 UTC | |
by elef (Friar) on Jan 25, 2011 at 13:26 UTC | |
Re: Windows .exe produced by pp no longer runs?
by bcrowell2 (Friar) on Jan 25, 2011 at 03:57 UTC |