in reply to Re: Saving parsed perl for faster loading?
in thread Saving parsed perl for faster loading?

I think it's called ByteLoader (B::Bytecode).
  • Comment on Re: Re: Saving parsed perl for faster loading?

Replies are listed 'Best First'.
Re: Re: Re: Saving parsed perl for faster loading?
by Anonymous Monk on Dec 01, 2003 at 15:44 UTC
    Looks like a good solution for me, so I've tried it out (on a Windows machine) with a simple code file (holding : print "hello compiled world";) and the command C:\>perl -MO=Bytecode compiled.pl > result.pl. This result in a series of errors : 1: no such instruction "" ... 110: no such instruction "" There were 110 assembly errors Excuse me if I'm wrong, but the documentation about ByteLoader is rather skinny. Is there a good source for information about this way of working out there? All help is welcome