Re: [perl #22984] perl-5.8.1-RC2: TEST -bytecompile won't work at all
[p5sagit/p5-mst-13.2.git] / ext / ByteLoader / ByteLoader.pm
CommitLineData
b295d113 1package ByteLoader;
2
9426adcd 3use XSLoader ();
b295d113 4
1df34986 5our $VERSION = '0.04';
b295d113 6
9426adcd 7XSLoader::load 'ByteLoader', $VERSION;
b295d113 8
b295d113 91;
10__END__
b295d113 11=head1 NAME
12
13ByteLoader - load byte compiled perl code
14
15=head1 SYNOPSIS
16
059a8bb7 17 use ByteLoader 0.04;
b295d113 18 <byte code>
19
1df34986 20 or just
21
22 perl -MByteLoader bytecode_file
b295d113 23
24=head1 DESCRIPTION
25
1df34986 26This module is used to load byte compiled perl code as produced by
27C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
28the byte code and insert it into the compiled code at the appropriate point.
b295d113 29
30=head1 AUTHOR
31
32Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
1df34986 33Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
b295d113 34
35=head1 SEE ALSO
36
37perl(1).
38
39=cut