search for: 5d00bfd

Displaying 1 result from an estimated 1 matches for "5d00bfd".

2011 Jul 20
2
[PATCH 1/1] Modify --param support to include additional option
...e. This patch adds support for this and continues to support the --param name=value option. Signed-off-by: Mike Pagano <mpagano at gentoo.org> --- klcc/klcc.in | 15 +++++++++++---- 1 files changed, 11 insertions(+), 4 deletions(-) diff --git a/klcc/klcc.in b/klcc/klcc.in index 711a832..5d00bfd 100644 --- a/klcc/klcc.in +++ b/klcc/klcc.in @@ -159,10 +159,17 @@ while ( defined($a = shift(@ARGV)) ) { # gcc options, that force preprocessing mode push(@ccopt, $a); $operation = 'E'; - } elsif ( $a eq '--param' ) { - push(@ccopt, $a); - push(@ccopt, shift(@ARGV)); -...