Skip to content

Commit

Permalink
Bump up Parrot's recursion limit when we start (from default 1000 to …
Browse files Browse the repository at this point in the history
…100000).
  • Loading branch information
pmichaud committed Jun 18, 2012
1 parent c203977 commit ddfb9ff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main.nqp
Expand Up @@ -6,6 +6,9 @@ sub MAIN(@ARGS) {
# Initialize dynops.
pir::rakudo_dynop_setup__v();

# Bump up Parrot's recursion limit
pir::getinterp__P().recursion_limit(100000);

# Create and configure compiler object.
my $comp := Perl6::Compiler.new();
$comp.language('perl6');
Expand Down

0 comments on commit ddfb9ff

Please sign in to comment.