Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Change $*PERL<name> to lowercase. Add $*VM.
  • Loading branch information
pmichaud committed Jul 5, 2010
1 parent 22578e8 commit d9a5ac0
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/cheats/process.pm
Expand Up @@ -7,10 +7,23 @@ package PROCESS {
our $ERR = IO.new(:PIO(pir::getstderr__P));

our $PERL = {
name => 'Rakudo',
name => 'rakudo',
version => Q:PIR { %r = box .RAKUDO_VERSION }
};

our $VM = {
name => 'parrot',
config =>
Q:PIR {
.local pmc interp, config
.include 'iglobals.pasm'
load_bytecode 'config.pbc'
interp = getinterp
config = interp[.IGLOBALS_CONFIG_HASH]
%r = '&hash'(config :flat)
}
}

Q:PIR {
## set up $*OS, $*OSVER $*EXECUTABLE_NAME
.include 'sysinfo.pasm'
Expand Down

0 comments on commit d9a5ac0

Please sign in to comment.