[EMAIL PROTECTED] wrote:
How can i generate such a file?



Million dollar question , No perfect answer. Depends on what OS you are using.

Do a google on perl2exe

For starters try the O.pm. To convert your perlcode to C and then compile the C code

On linux You can compile using
export LDOPTS=`perl -MExtUtils::Embed -e ldopts`
export CCOPTS=`perl -MExtUtils::Embed -e ccopts`
perl -MO=C script.pl > script.c
gcc $CCOPTS script.c -o script $LDOPTS


This works only on some scripts. The O.pm is still evolving


Ram


-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to