Changeset 21214
- Timestamp:
- 07/04/08 13:40:26 (5 months ago)
- Files:
-
- 2 modified
-
misc/sm0p/sm0p.pm (modified) (3 diffs)
-
v6/smop/sm0p.pl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
misc/sm0p/sm0p.pm
r21193 r21214 118 118 119 119 token idconst { 120 <idconst_list> { make 'SMOP__ID__' ~ $ /~ '' }120 <idconst_list> { make 'SMOP__ID__' ~ $<idconst_list> ~ '' } 121 121 } 122 122 … … 141 141 token cint2 { <cint> { make $<cint> ~ '' } } 142 142 token cint { 143 <digitsP5> { make $ /~ '' }143 <digitsP5> { make $<digitsP5> ~ '' } 144 144 } 145 145 … … 163 163 164 164 token nativeint { 165 <digitsP5> { make 'SMOP__NATIVE__int_create(' ~ $ /~ ')' }165 <digitsP5> { make 'SMOP__NATIVE__int_create(' ~ $<digitsP5> ~ ')' } 166 166 } 167 167 -
v6/smop/sm0p.pl
r21194 r21214 44 44 my $pid; 45 45 if ($ENV{SM0P_FASTER}) { 46 $pid = open3($writer, $reader, $error, 'perl', '-I'.$base.'/../../misc/sm0p', $base.'/../../misc/sm0p/sm0p_with_actions') || die "$@";46 $pid = open3($writer, $reader, $error, 'perl',"-I$base/../../src/perl6",'-I'.$base.'/../../misc/sm0p', $base.'/../../misc/sm0p/sm0p_with_actions') || die "$@"; 47 47 } else { 48 48 $pid = open3($writer, $reader, $error, 'perl', '-I'.$base.'/../v6-KindaPerl6/compiled/perl5-kp6-mp6/lib',$base.'/sm0p/KP6sm0p.pl');
