Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add --gc=gms to Parrot configuration options.
  • Loading branch information
pmichaud committed Apr 27, 2011
1 parent 8c68a22 commit f742a45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skel/Configure.pl
Expand Up @@ -31,7 +31,8 @@
my $prefix = $options{'prefix'} || cwd()."/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 f742a45

Please sign in to comment.