Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
explicitly chose generational GC
Parrot folks say that it will probably not be the default for the next
release, so there is no harm in selecting it explicitly.
tadzik++ for the idea
  • Loading branch information
moritz committed Mar 4, 2011
1 parent e0bfb29 commit 4138622
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Configure.pl
Expand Up @@ -26,7 +26,8 @@
my $prefix = $options{'gen-parrot-prefix'} || cwd()."/parrot_install";
# parrot's Configure.pl mishandles win32 backslashes in --prefix
$prefix =~ s{\\}{/}g;
my @command = ($^X, "build/gen_parrot.pl", "--prefix=$prefix", ($^O !~ /win32/i ? "--optimize" : ()), @opts);
my @command = ($^X, "build/gen_parrot.pl", "--prefix=$prefix",
'--gc=gms', ($^O !~ /win32/i ? "--optimize" : ()), @opts);

print "Generating Parrot ...\n";
print "@command\n\n";
Expand Down

0 comments on commit 4138622

Please sign in to comment.