source: for-distributions/trunk/bin/windows/perl/lib/ByteLoader.pm@ 14489

Last change on this file since 14489 was 14489, checked in by oranfry, 17 years ago

upgrading to perl 5.8

File size: 687 bytes
Line 
1package ByteLoader;
2
3use XSLoader ();
4
5our $VERSION = '0.06';
6
7XSLoader::load 'ByteLoader', $VERSION;
8
91;
10__END__
11
12=head1 NAME
13
14ByteLoader - load byte compiled perl code
15
16=head1 SYNOPSIS
17
18 use ByteLoader 0.06;
19 <byte code>
20
21 or just
22
23 perl -MByteLoader bytecode_file
24
25=head1 DESCRIPTION
26
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.
30
31=head1 AUTHOR
32
33Tom Hughes <[email protected]> based on the ideas of Tim Bunce and others.
34Many changes by Enache Adrian <[email protected]> 2003 a.d.
35
36=head1 SEE ALSO
37
38perl(1).
39
40=cut
Note: See TracBrowser for help on using the repository browser.