Skip to content

Commit

Permalink
perlcc -v5 does now -Dsp,-v
Browse files Browse the repository at this point in the history
  • Loading branch information
Reini Urban committed Feb 14, 2012
1 parent 6ae8dc2 commit da7d1df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions script/perlcc.PL
Expand Up @@ -389,12 +389,12 @@ sub compile_cstyle {
}
$addoptions .= opt(Wb);
if( $addoptions ) {
$addoptions .= ',-v' if opt(v) > 4;
$addoptions .= ',-Dfull' if opt(v) > 5;
$addoptions .= ',-Dfull' if opt(v) >= 6;
$addoptions .= ',-Dsp,-v' if opt(v) == 5;
$addoptions .= ',';
} elsif (opt(v) > 4) {
$addoptions = '-v,';
$addoptions .= '-Dfull,' if opt(v) > 5;
$addoptions = '-Dsp,-v,';
$addoptions = '-Dfull,-v,' if opt(v) >= 6;
}
my $staticxs = opt(staticxs) ? "-staticxs," : '';
Expand Down

0 comments on commit da7d1df

Please sign in to comment.