On Fri, Oct 24, 2008 at 8:49 AM, via RT Canol Gökel
<[EMAIL PROTECTED]> wrote:
> # New Ticket Created by  Canol Gökel
> # Please include the string:  [perl #60098]
> # in the subject line of all future correspondence about this issue.
> # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60098 >
>
>
> After doing the Windows installation via setup-parrot-0.8.0.exe I cannot run 
> the perl 6 compiler. When I do for example:
>
>> perl6 example.pl
>
> It gives this error:
>
> "load_bytecode" couldn't find file 'P6object.pbc'
> current instr.: 'onload' pc 0 (src/gen_builtins.pir:28)
> called from Sub 'parrot;Perl6;Compiler;main' pc -1 ((unknown file):-1)
>
this seems to be a bug, perhaps in the code that generates the perl6
executable. in the meantime, you can remove perl6.exe (in the bin/
dir) and create perl6.cmd (same dir) with the following contents:

  @echo off
  rem adjust the path below to suit your environment
  set PARROT_ROOTDIR=c:\parrot-0.8.0
  %PARROT_ROOTDIR%\bin\parrot.exe %PARROT_ROOTDIR%\languages\perl6\perl6.pbc %*

~jerry

Reply via email to