summaryrefslogtreecommitdiff
path: root/ext/ByteLoader/ByteLoader.pm
diff options
context:
space:
mode:
authorAdrian M. Enache <enache@rdslink.ro>2003-07-19 02:15:37 +0300
committerJarkko Hietaniemi <jhi@iki.fi>2003-07-27 15:13:10 +0000
commit1df3498620ecc1df99a2455e631a135f1710416f (patch)
tree5eefdb3c46f3a4cd93f5d6352185ac0c5b63a5ac /ext/ByteLoader/ByteLoader.pm
parent8f33b42a5befbbd0d1d798a463bfe4ac2ba9bf10 (diff)
downloadperl-1df3498620ecc1df99a2455e631a135f1710416f.tar.gz
Re: [perl #22984] perl-5.8.1-RC2: TEST -bytecompile won't work at all
Message-ID: <20030718201537.GA1574@ratsnest.hole> p4raw-id: //depot/perl@20220
Diffstat (limited to 'ext/ByteLoader/ByteLoader.pm')
-rw-r--r--ext/ByteLoader/ByteLoader.pm17
1 files changed, 8 insertions, 9 deletions
diff --git a/ext/ByteLoader/ByteLoader.pm b/ext/ByteLoader/ByteLoader.pm
index 9c8c84d677..08a53a658e 100644
--- a/ext/ByteLoader/ByteLoader.pm
+++ b/ext/ByteLoader/ByteLoader.pm
@@ -2,15 +2,12 @@ package ByteLoader;
use XSLoader ();
-$VERSION = 0.04;
+our $VERSION = '0.04';
XSLoader::load 'ByteLoader', $VERSION;
-# Preloaded methods go here.
-
1;
__END__
-
=head1 NAME
ByteLoader - load byte compiled perl code
@@ -20,18 +17,20 @@ ByteLoader - load byte compiled perl code
use ByteLoader 0.04;
<byte code>
- use ByteLoader 0.04;
- <byte code>
+ or just
+
+ perl -MByteLoader bytecode_file
=head1 DESCRIPTION
-This module is used to load byte compiled perl code. It uses the source
-filter mechanism to read the byte code and insert it into the compiled
-code at the appropriate point.
+This module is used to load byte compiled perl code as produced by
+C<perl -MO=Bytecode=...>. It uses the source filter mechanism to read
+the byte code and insert it into the compiled code at the appropriate point.
=head1 AUTHOR
Tom Hughes <tom@compton.nu> based on the ideas of Tim Bunce and others.
+Many changes by Enache Adrian <enache@rdslink.ro> 2003 a.d.
=head1 SEE ALSO