Re: How to make a perl program to an exe file

2006-11-22 Thread Shiping Wang
At 07:35 AM 11/21/2006, Dharshana Eswaran wrote: Hi all, I have a perl program in a folder along with 2 more files associated to the main program. I need to know how to create a exe file out of this? You may take a look PAR http://search.cpan.org/~smueller/PAR-0.960/lib/PAR.pm to convert per

RE: How to make a perl program to an exe file (U)

2006-11-22 Thread Meidling, Keith CTR OSD-CIO
: beginners@perl.org Subject: Re: How to make a perl program to an exe file Dharshana Eswaran wrote: > Hi Rajeev, > > I tried using Perlcc, but the following error occurs. > > bash$ perlcc zzz.pl > Can't exec "gcc": No such file or directory at > /XXX/xxx/perl/bin/pe

Re: How to make a perl program to an exe file

2006-11-22 Thread Adriano Rodrigues
On 11/22/06, Dharshana Eswaran <[EMAIL PROTECTED]> wrote: Hi Rajeev, I tried using Perlcc, but the following error occurs. perlcc is a no go. It is not maintained anymore. In bleedperl (the development version of Perl) it was retired. I think PAR may be the answer you're looking for. The pp (

RE: How to make a perl program to an exe file

2006-11-21 Thread Venkat Saranathan
Dharshana, Here is a link that you'll find useful. with warm regards, Venkat Saranathan Gulf Breeze Software www.gulfsoft.com GulfBreeze Blog www.gulfsoft.com/blog -Original Message- From: Dharshana E

Re: How to make a perl program to an exe file

2006-11-21 Thread Tom Smith
Dharshana Eswaran wrote: Hi Rajeev, I tried using Perlcc, but the following error occurs. bash$ perlcc zzz.pl Can't exec "gcc": No such file or directory at /XXX/xxx/perl/bin/perlcc line 347. bash$ What does this mean? or Where it has gone wrong? Thanks and Regards, Dharshana Make sure you

Re: How to make a perl program to an exe file

2006-11-21 Thread Hal Wigoda
you may be missing the gcc compiler or not have the execute permission. On Nov 22, 2006, at 12:08 AM, Dharshana Eswaran wrote: Hi Rajeev, I tried using Perlcc, but the following error occurs. bash$ perlcc zzz.pl Can't exec "gcc": No such file or directory at /XXX/xxx/perl/bin/ perlcc line

Re: How to make a perl program to an exe file

2006-11-21 Thread Dharshana Eswaran
r K.P -Original Message- From: kilaru rajeev [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 22, 2006 11:08 AM To: Dharshana Eswaran Cc: beginners@perl.org Subject: Re: How to make a perl program to an exe file Hi Dharsana, Please check this link. http://perldoc.perl.org/perlcc.html

Re: How to make a perl program to an exe file

2006-11-21 Thread Dharshana Eswaran
Hi Rajeev, I tried using Perlcc, but the following error occurs. bash$ perlcc zzz.pl Can't exec "gcc": No such file or directory at /XXX/xxx/perl/bin/perlcc line 347. bash$ What does this mean? or Where it has gone wrong? Thanks and Regards, Dharshana On 11/22/06, kilaru rajeev <[EMAIL PRO

RE: How to make a perl program to an exe file

2006-11-21 Thread Krishnakumar K P
: Re: How to make a perl program to an exe file Hi Dharsana, Please check this link. http://perldoc.perl.org/perlcc.html I hope this will clarify your questions. Regards, Rajeev Kilaru On 11/21/06, kilaru rajeev <[EMAIL PROTECTED]> wrote: > > There are some programs call "perlc

Re: How to make a perl program to an exe file

2006-11-21 Thread santhosh Yuvaraj
Refer this link, http://readlist.com/lists/perl.org/beginners/4/21371.html Best Rgds, Santhosh Yuvaraj. On 11/21/06, Dharshana Eswaran <[EMAIL PROTECTED]> wrote: Hi all, I have a perl program in a folder along with 2 more files associated to the main program. I need to know how to create a

Re: How to make a perl program to an exe file

2006-11-21 Thread kilaru rajeev
Hi Dharsana, Please check this link. http://perldoc.perl.org/perlcc.html I hope this will clarify your questions. Regards, Rajeev Kilaru On 11/21/06, kilaru rajeev <[EMAIL PROTECTED]> wrote: There are some programs call "perlcc" like that. You can change Perl files as the executable. rgds,

Re: How to make a perl program to an exe file

2006-11-21 Thread Chad Perrin
On Tue, Nov 21, 2006 at 03:32:39PM -0700, Himanshu Ardawatia wrote: > I am afraid if thats possible unlike 'c' programs. > In unix otherwise you can make any script 'executable' by chmod a+x > scriptname and putting that in $PATH (or /bin). Then one should be able to > run it just like any unix com