Re: binary perl

2004-01-30 Thread Dan Brow
What's the perl compiler called? On Sat, 2004-01-24 at 18:13, Dan Anderson wrote: On Fri, 2004-01-23 at 20:44, Dan Brow wrote: Is it possible to make a perl script/program a binary file? There is an experimental perl compiler. It's not recommended for production use but is a cool toy.

RE: binary perl

2004-01-30 Thread Tim Johnson
perldoc perlcc -Original Message- From: Dan Brow [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 11:03 AM To: Perl Beginners Subject: Re: binary perl What's the perl compiler called? On Sat, 2004-01-24 at 18:13, Dan Anderson wrote: On Fri, 2004-01-23 at 20:44, Dan Brow

Re: binary perl

2004-01-24 Thread Wiggins d'Anconia
Dan Brow wrote: Is it possible to make a perl script/program a binary file? I have a few scripts some one wants but I don't want them to have the source. I tried perlcc but I want it to remain perl not c, if that's possible or realistic. thanks, Dan. perldoc -q 'hide the source'

Re: binary perl

2004-01-24 Thread Bob Showalter
Dan Brow wrote: Is it possible to make a perl script/program a binary file? For bundling, yes. For hiding source, not really. I have a few scripts some one wants but I don't want them to have the source. I tried perlcc but I want it to remain perl not c, if that's possible or realistic.

Re: binary perl

2004-01-24 Thread Dan Anderson
On Fri, 2004-01-23 at 20:44, Dan Brow wrote: Is it possible to make a perl script/program a binary file? There is an experimental perl compiler. It's not recommended for production use but is a cool toy. When Perl 6 comes out that will all change though... -Dan -- To unsubscribe, e-mail:

RE: binary perl

2004-01-24 Thread Tim Johnson
Short answer: No. There are programs like PerlApp that will package the interpreter with your code and make it into an executable file, but anyone who is determined enough can still get your source from the computer's memory. Your best bet is the old security by obscurity approach of either