This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [perl #25270] 5.8.3 - POSIX::ctermid() on Solaris
[perl5.git] / ext / ByteLoader / ByteLoader.pm
CommitLineData
b295d113
TH
1package ByteLoader;
2
9426adcd 3use XSLoader ();
b295d113 4
566ece03 5our $VERSION = '0.05';
b295d113 6
9426adcd 7XSLoader::load 'ByteLoader', $VERSION;
b295d113 8
b295d113
TH
91;
10__END__
bf2102da 11
b295d113
TH
12=head1 NAME
13
14ByteLoader - load byte compiled perl code
15
16=head1 SYNOPSIS
17
059a8bb7 18 use ByteLoader 0.04;
b295d113
TH
19 <byte code>
20
1df34986
AE
21 or just
22
23 perl -MByteLoader bytecode_file
b295d113
TH
24
25=head1 DESCRIPTION
26
1df34986
AE
27This module is used to load byte compiled perl code as produced by
28C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
29the byte code and insert it into the compiled code at the appropriate point.
b295d113
TH
30
31=head1 AUTHOR
32
33Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
1df34986 34Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
b295d113
TH
35
36=head1 SEE ALSO
37
38perl(1).
39
40=cut