Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: perl program compilation

by eXile (Priest)
on Apr 15, 2006 at 14:26 UTC ( [id://543539]=note: print w/replies, xml ) Need Help??


in reply to perl program compilation

Normally the compiled form isn't dumped to file, perl does the compilation in memory.

You can produce a perl bytecode by using B::Bytecode:

perl -MO=Bytecode,-H -e'print "hello world"' > hi.plc
hi.plc will be an executable, with a first line telling perl how to decode the bytecode (caused by the '-H' option), the rest is a bytecode.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://543539]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-03-28 11:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found