The bytecode backend for the Perl compiler. Takes Perl source code and generates platform-independent bytecode that can be run with the byteperl executable or can be loaded via the byteload_fh function in the B module. Compiling with the bytecode backend won't speed up execution of your program, but it may improve start-up time. Invoke as:
perl -MO=Bytecode[,options] program
in which program is the name of the Perl script to compile. Any non-option arguments are treated as the names of objects to be saved; the main program is assumed if there are no extra arguments. Possible options are:
Copyright © 2002 O'Reilly & Associates. All rights reserved.